Changeset 371bd7d in mainline for boot/arch/arm32/loader/Makefile.build
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (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
-
boot/arch/arm32/loader/Makefile.build (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/loader/Makefile.build
rcd82bb1 r371bd7d 32 32 33 33 include ../../../../version 34 include ../../../../Makefile.common 34 35 include ../../../../Makefile.config 35 include ../../../../config.defs36 36 include Makefile.common 37 37 include Makefile.toolchain … … 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): 78 rm -f $(USPACEDIR)/dist/srv/* 79 rm -f $(USPACEDIR)/dist/app/* 80 rm -f $(USPACEDIR)/dist/cfg/net/* 81 87 82 for file in $(RD_SRVS) ; do \ 88 83 cp $$file $(USPACEDIR)/dist/srv/ ; \ … … 90 85 for file in $(RD_APPS) ; do \ 91 86 cp $$file $(USPACEDIR)/dist/app/ ; \ 87 done 88 for file in $(NET_CFG) ; do \ 89 cp $$file $(USPACEDIR)/dist/cfg/net/ ; \ 92 90 done 93 91 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.
