Changeset 371bd7d in mainline for boot/arch/sparc64/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/sparc64/loader/Makefile.build (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/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 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/vfs62 ifeq ($(RDFMT),tmpfs)63 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs64 endif65 ifeq ($(RDFMT),fat)66 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat67 endif68 53 69 54 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) … … 92 77 %.o: %.S $(DEPEND) 93 78 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 79 ifeq ($(PRECHECK),y) 80 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 81 endif 94 82 95 83 %.o: %.c $(DEPEND) 96 84 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 85 ifeq ($(PRECHECK),y) 86 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 87 endif 97 88 98 89 $(DEPEND): 90 rm -f $(USPACEDIR)/dist/srv/* 91 rm -f $(USPACEDIR)/dist/app/* 92 rm -f $(USPACEDIR)/dist/cfg/net/* 93 99 94 for file in $(RD_SRVS) ; do \ 100 95 cp $$file $(USPACEDIR)/dist/srv/ ; \ … … 102 97 for file in $(RD_APPS) ; do \ 103 98 cp $$file $(USPACEDIR)/dist/app/ ; \ 99 done 100 for file in $(NET_CFG) ; do \ 101 cp $$file $(USPACEDIR)/dist/cfg/net/ ; \ 104 102 done 105 103 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.
