Changes in boot/arch/sparc64/loader/Makefile.build [4e9aaf5:50989793] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/loader/Makefile.build
r4e9aaf5 r50989793 32 32 33 33 include ../../../../version 34 include ../../../../Makefile.common35 34 include ../../../../Makefile.config 35 include ../../../../config.defs 36 36 include Makefile.common 37 37 include Makefile.toolchain … … 51 51 asm.S \ 52 52 boot.S 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/vfs 62 ifeq ($(RDFMT),tmpfs) 63 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs 64 endif 65 ifeq ($(RDFMT),fat) 66 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat 67 endif 53 68 54 69 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) … … 77 92 %.o: %.S $(DEPEND) 78 93 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 79 ifeq ($(PRECHECK),y)80 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__81 endif82 94 83 95 %.o: %.c $(DEPEND) 84 96 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 85 ifeq ($(PRECHECK),y)86 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)87 endif88 97 89 98 $(DEPEND): 90 rm -f $(USPACEDIR)/dist/srv/*91 rm -f $(USPACEDIR)/dist/app/*92 rm -f $(USPACEDIR)/dist/cfg/net/*93 94 99 for file in $(RD_SRVS) ; do \ 95 100 cp $$file $(USPACEDIR)/dist/srv/ ; \ … … 97 102 for file in $(RD_APPS) ; do \ 98 103 cp $$file $(USPACEDIR)/dist/app/ ; \ 99 done100 for file in $(NET_CFG) ; do \101 cp $$file $(USPACEDIR)/dist/cfg/net/ ; \102 104 done 103 105 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.