Changeset 5eb5dcf in mainline for boot/arch/ia64/loader/Makefile.build
- Timestamp:
- 2010-01-06T20:56:04Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fccc236
- Parents:
- 002252a (diff), eca2435 (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
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/loader/Makefile.build
r002252a r5eb5dcf 49 49 boot.S 50 50 51 COMPONENTS = \52 $(KERNELDIR)/kernel.bin \53 $(USPACEDIR)/srv/ns/ns \54 $(USPACEDIR)/srv/loader/loader \55 $(USPACEDIR)/app/init/init \56 $(USPACEDIR)/srv/devmap/devmap \57 $(USPACEDIR)/srv/bd/rd/rd \58 $(USPACEDIR)/srv/vfs/vfs59 ifeq ($(RDFMT),tmpfs)60 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs61 endif62 ifeq ($(RDFMT),fat)63 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat64 endif65 66 51 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 67 52 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):
Note:
See TracChangeset
for help on using the changeset viewer.