Changeset 6ef2c11 in mainline for boot/arch/sparc64/loader
- Timestamp:
- 2010-01-06T20:33:50Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 385a3d6
- Parents:
- 4da7d79 (diff), 23efd30 (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. - Location:
- boot/arch/sparc64/loader
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/loader/Makefile
r4da7d79 r6ef2c11 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 37 38 38 clean: … … 43 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 46 find . -name '*.o' -follow -exec rm \{\} \; 47 47 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/sparc64/loader/Makefile.build
r4da7d79 r6ef2c11 77 77 %.o: %.S $(DEPEND) 78 78 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 79 ifeq ($(PRECHECK),y) 80 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 81 endif 79 82 80 83 %.o: %.c $(DEPEND) 81 84 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 85 ifeq ($(PRECHECK),y) 86 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 87 endif 82 88 83 89 $(DEPEND): -
boot/arch/sparc64/loader/Makefile.common
r4da7d79 r6ef2c11 35 35 DEPEND = Makefile.depend 36 36 DEPEND_PREV = $(DEPEND).prev 37 JOB = image.job 37 38 OUTPUT = image.boot 38 39 … … 45 46 RD_SRVS_GENERIC = \ 46 47 $(USPACEDIR)/srv/fs/fat/fat \ 47 $(USPACEDIR)/srv/ cir/fhc/fhc \48 $(USPACEDIR)/srv/ cir/obio/obio48 $(USPACEDIR)/srv/hw/cir/fhc/fhc \ 49 $(USPACEDIR)/srv/hw/cir/obio/obio 49 50 50 51 RD_APPS_GENERIC = \ -
boot/arch/sparc64/loader/Makefile.toolchain
r4da7d79 r6ef2c11 39 39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/sparc64/bin 40 40 41 JOBFILE = ../../../../tools/jobfile.py 42 41 43 ifeq ($(COMPILER),gcc_native) 42 44 CC = gcc
Note:
See TracChangeset
for help on using the changeset viewer.