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