Changes in boot/arch/ppc32/loader/Makefile.build [cc1f8d4:4e9aaf5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/Makefile.build
rcc1f8d4 r4e9aaf5 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 … … 52 52 boot.S 53 53 54 COMPONENTS = \55 $(KERNELDIR)/kernel.bin \56 $(USPACEDIR)/srv/ns/ns \57 $(USPACEDIR)/app/init/init \58 $(USPACEDIR)/srv/loader/loader \59 $(USPACEDIR)/srv/devmap/devmap \60 $(USPACEDIR)/srv/bd/rd/rd \61 $(USPACEDIR)/srv/vfs/vfs62 ifeq ($(RDFMT),tmpfs)63 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs64 endif65 ifeq ($(RDFMT),fat)66 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat67 endif68 69 54 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 70 55 COMPONENT_OBJECTS := $(addsuffix .co,$(basename $(notdir $(COMPONENTS)))) $(INITRD).co … … 81 66 %.o: %.S $(DEPEND) 82 67 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y) 69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 70 endif 83 71 84 72 %.o: %.c $(DEPEND) 85 73 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 76 endif 86 77 87 78 $(DEPEND): 79 rm -f $(USPACEDIR)/dist/srv/* 80 rm -f $(USPACEDIR)/dist/app/* 81 rm -f $(USPACEDIR)/dist/cfg/net/* 82 88 83 for file in $(RD_SRVS) ; do \ 89 84 cp $$file $(USPACEDIR)/dist/srv/ ; \ … … 91 86 for file in $(RD_APPS) ; do \ 92 87 cp $$file $(USPACEDIR)/dist/app/ ; \ 88 done 89 for file in $(NET_CFG) ; do \ 90 cp $$file $(USPACEDIR)/dist/cfg/net/ ; \ 93 91 done 94 92 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.