Differences From Artifact [7c13625dc8]:
- File makefile — part of check-in [0c20d256a6] at 2019-07-27 05:28:14 on branch trunk — port header macro files to m4; delete gpp infra; fix glaring syntax errors in kcore/type.h (user: lexi, size: 3602) [annotate] [blame] [check-ins using]
To Artifact [d3e7936df2]:
- File makefile — part of check-in [5279674525] at 2019-08-18 10:20:30 on branch trunk — fix kmheapa() and add kmheapf() (user: lexi, size: 3623) [annotate] [blame] [check-ins using]
1 1 export OUT = $(PWD)/out 2 2 3 3 # TODO: calculate these using $(MAKE_HOST) 4 4 export ARCH = x86 5 5 export OS = lin 6 6 export BITS = 64 7 +export ROOT = $(PWD) 7 8 export TMP = $(PWD)/tmp 8 9 9 10 ifneq ($(BITS),) 10 11 export TARGET = $(ARCH).$(OS).$(BITS) 11 12 else 12 13 export TARGET = $(ARCH).$(OS) 13 14 endif