Changeset 4872160 in mainline for boot/Makefile.silo
- Timestamp:
- 2010-05-04T10:44:55Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 568db0f
- Parents:
- bb252ca
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.silo
rbb252ca r4872160 27 27 # 28 28 29 BFD_NAME = elf64-ia64-little 30 BFD_ARCH = ia64 29 .PHONY: all build_dist clean 31 30 32 JOBFILE = ../../../../tools/jobfile.py 31 include Makefile.common 33 32 34 CFLAGS = \ 35 -DRELEASE=$(RELEASE) -I. -I../../../generic -I../../../genarch \ 36 -I../../../../kernel/generic/include -imacros ../../../../config.h \ 37 -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration \ 38 -Wmissing-prototypes -Werror -O3 -fno-unwind-tables -mfixed-range=f32-f127 \ 39 -mno-pic -pipe 33 ifeq ($(CONFIG_AOUT_ISOFS_B),y) 34 SILO_PACKAGE = a.out 35 else 36 SILO_PACKAGE = raw 37 endif 40 38 41 DEPEND_DEFS = $(CONFIG_DEFS) 39 ISOFS_B = silo/$(SILO_PACKAGE)/isofs.b 40 SECOND_B = silo/$(SILO_PACKAGE)/second.b 41 SILO_CONF = silo/silo.conf 42 ISOFS_B_IN = $(DISTROOT)/boot/isofs.b 43 44 all: $(POST_OUTPUT) 45 46 $(POST_OUTPUT): build_dist 47 mkisofs -f -G $(ISOFS_B_IN) -B ... -r -o $@ $(DISTROOT)/ 48 49 build_dist: clean 50 mkdir -p $(DISTROOT)/boot 51 mkdir -p $(DISTROOT)/HelenOS 52 cp $(BOOT_OUTPUT) $(DISTROOT)/HelenOS/ 53 cp $(ISOFS_B) $(DISTROOT)/boot/ 54 cp $(SECOND_B) $(DISTROOT)/boot/ 55 cp $(SILO_CONF) $(DISTROOT)/boot/ 56 57 clean: 58 rm -fr $(DISTROOT)
Note:
See TracChangeset
for help on using the changeset viewer.