Changes in boot/Makefile.build [4761f54:0798689] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r4761f54 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 … … 37 37 38 38 AFLAGS = 39 LFLAGS = --fatal-warnings 39 LFLAGS = --fatal-warnings --warn-common 40 40 41 41 # FIXME: This condition is a workaround for issue #693. … … 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 48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common 49 49 50 50 GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ … … 76 76 77 77 clean: 78 rm -f $(RAW) $(MAP) $(ARCH_INCLUDE) $(GENARCH_INCLUDE)78 rm -f $(RAW) $(MAP) 79 79 80 80 -include $(DEPENDS) … … 109 109 endif 110 110 111 depend: $( ARCH_INCLUDE) $(GENARCH_INCLUDE) $(COMMON_HEADER_ARCH) $(PRE_DEPEND)111 depend: $(PRE_DEPEND) 112 112 113 113 $(COMPS).s: $(COMPS).zip … … 128 128 include Makefile.initrd 129 129 130 $(ARCH_INCLUDE): arch/$(KARCH)/include/131 ln -sfn ../../$< $@132 133 $(GENARCH_INCLUDE): genarch/include/134 ln -sfn ../../$< $@135 136 $(COMMON_HEADER_ARCH): $(COMMON_HEADER)137 ln -sfn ../../../$< $@
Note:
See TracChangeset
for help on using the changeset viewer.