Changes in boot/Makefile.build [dd162f6:0798689] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
rdd162f6 r0798689 31 31 include Makefile.common 32 32 33 INCLUDES = -Igeneric/include -I $(ROOT_PATH)/abi/include33 INCLUDES = -Igeneric/include -Iarch/$(KARCH)/include -Igenarch/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 \ 49 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=. 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common 50 49 51 50 GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ … … 77 76 78 77 clean: 79 rm -f $(RAW) $(MAP) $(ARCH_INCLUDE) $(GENARCH_INCLUDE)78 rm -f $(RAW) $(MAP) 80 79 81 80 -include $(DEPENDS) … … 110 109 endif 111 110 112 depend: $( ARCH_INCLUDE) $(GENARCH_INCLUDE) $(PRE_DEPEND)111 depend: $(PRE_DEPEND) 113 112 114 113 $(COMPS).s: $(COMPS).zip … … 129 128 include Makefile.initrd 130 129 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.