Changes in / [9b642f92:f9c4bc5] in mainline
- Location:
- boot
- Files:
-
- 40 added
- 40 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r9b642f92 rf9c4bc5 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 … … 77 77 78 78 clean: 79 rm -f $(RAW) $(MAP) 79 rm -f $(RAW) $(MAP) $(ARCH_INCLUDE) $(GENARCH_INCLUDE) 80 80 81 81 -include $(DEPENDS) … … 110 110 endif 111 111 112 depend: $( PRE_DEPEND)112 depend: $(ARCH_INCLUDE) $(GENARCH_INCLUDE) $(PRE_DEPEND) 113 113 114 114 $(COMPS).s: $(COMPS).zip … … 129 129 include Makefile.initrd 130 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 ../../$< $@ -
boot/Makefile.common
r9b642f92 rf9c4bc5 58 58 59 59 JOBFILE = $(ROOT_PATH)/tools/jobfile.py 60 61 ARCH_INCLUDE = generic/include/arch 62 GENARCH_INCLUDE = generic/include/genarch 60 63 61 64 DISTROOT = distroot
Note:
See TracChangeset
for help on using the changeset viewer.