Changes in boot/Makefile.build [0798689:dd162f6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r0798689 rdd162f6 31 31 include Makefile.common 32 32 33 INCLUDES = -Igeneric/include -I arch/$(KARCH)/include -Igenarch/include -I$(ROOT_PATH)/abi/include33 INCLUDES = -Igeneric/include -I$(ROOT_PATH)/abi/include 34 34 OPTIMIZATION = 3 35 35 … … 46 46 COMMON_CFLAGS = $(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 47 47 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common \ 49 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=. 49 50 50 51 GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ … … 76 77 77 78 clean: 78 rm -f $(RAW) $(MAP) 79 rm -f $(RAW) $(MAP) $(ARCH_INCLUDE) $(GENARCH_INCLUDE) 79 80 80 81 -include $(DEPENDS) … … 109 110 endif 110 111 111 depend: $( PRE_DEPEND)112 depend: $(ARCH_INCLUDE) $(GENARCH_INCLUDE) $(PRE_DEPEND) 112 113 113 114 $(COMPS).s: $(COMPS).zip … … 128 129 include Makefile.initrd 129 130 131 $(ARCH_INCLUDE) $(ARCH_INCLUDE)/%.h: arch/$(KARCH)/include/ 132 ln -sfn ../../$< $@ 133 134 $(GENARCH_INCLUDE) $(GENARCH_INCLUDE)/%.h: genarch/include/ 135 ln -sfn ../../$< $@
Note:
See TracChangeset
for help on using the changeset viewer.