Changes in boot/arch/ia64/loader/Makefile.build [4e9aaf5:cc1f8d4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/loader/Makefile.build
r4e9aaf5 rcc1f8d4 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 … … 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/vfs 59 ifeq ($(RDFMT),tmpfs) 60 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs 61 endif 62 ifeq ($(RDFMT),fat) 63 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat 64 endif 65 51 66 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 52 67 COMPONENT_OBJECTS := $(addsuffix .co,$(basename $(notdir $(COMPONENTS)))) $(INITRD).co … … 60 75 $(OUTPUT): $(OBJECTS) $(COMPONENT_OBJECTS) $(LINK) 61 76 $(LD) -no-check-sections -N -T $(LINK) $(COMPONENT_OBJECTS) $(OBJECTS) -o $@ 62 $(MAKE) -C gefi/HelenOS 77 $(MAKE) -C gefi/HelenOS PREFIX=$(GEFI_PREFIX) 63 78 cp gefi/HelenOS/hello.efi ../../../../ 64 79 cp gefi/HelenOS/image.bin ../../../../ … … 66 81 %.o: %.S $(DEPEND) 67 82 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y)69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__70 endif71 83 72 84 %.o: %.c $(DEPEND) 73 85 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y)75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)76 endif77 86 78 87 $(DEPEND): 79 rm -f $(USPACEDIR)/dist/srv/*80 rm -f $(USPACEDIR)/dist/app/*81 rm -f $(USPACEDIR)/dist/cfg/net/*82 83 88 for file in $(RD_SRVS) ; do \ 84 89 cp $$file $(USPACEDIR)/dist/srv/ ; \ … … 86 91 for file in $(RD_APPS) ; do \ 87 92 cp $$file $(USPACEDIR)/dist/app/ ; \ 88 done89 for file in $(NET_CFG) ; do \90 cp $$file $(USPACEDIR)/dist/cfg/net/ ; \91 93 done 92 94 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.