Changeset 3b3e776 in mainline for boot/arch/arm32/loader/Makefile.build
- Timestamp:
- 2010-02-05T10:57:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0358da0
- Parents:
- 3f085132 (diff), b4cbef1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/loader/Makefile.build
r3f085132 r3b3e776 51 51 ../../../genarch/division.c 52 52 53 COMPONENTS = \54 $(KERNELDIR)/kernel.bin \55 $(USPACEDIR)/srv/ns/ns \56 $(USPACEDIR)/srv/loader/loader \57 $(USPACEDIR)/app/init/init \58 $(USPACEDIR)/srv/devmap/devmap \59 $(USPACEDIR)/srv/bd/rd/rd \60 $(USPACEDIR)/srv/vfs/vfs61 ifeq ($(RDFMT),tmpfs)62 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs63 endif64 ifeq ($(RDFMT),fat)65 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat66 endif67 68 53 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 69 54 COMPONENT_OBJECTS := $(addsuffix .co,$(basename $(notdir $(COMPONENTS)))) $(INITRD).co … … 80 65 %.o: %.S $(DEPEND) 81 66 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 67 ifeq ($(PRECHECK),y) 68 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 69 endif 82 70 83 71 %.o: %.c $(DEPEND) 84 72 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 73 ifeq ($(PRECHECK),y) 74 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 75 endif 85 76 86 77 $(DEPEND):
Note:
See TracChangeset
for help on using the changeset viewer.