Differences From Artifact [dc16a02cfa]:
- File makefile — part of check-in [d27f92e3b7] at 2019-06-28 04:32:40 on branch trunk — restructure file naming conventions and conclusively fix longstanding architectural build system problems with loads and loads of variables and a shit ton of function calls (user: lexi, size: 2682) [annotate] [blame] [check-ins using]
To Artifact [2a47be36e1]:
- File makefile — part of check-in [f5e894f1c4] at 2019-06-28 04:35:57 on branch trunk — fix useless params (user: lexi, size: 2760) [annotate] [blame] [check-ins using]
3 3 export ARCH = x86 4 4 export OS = lin 5 5 export BITS = 64 6 6 export TMP = $(PWD)/tmp 7 7 8 8 export TARGET = $(ARCH).$(OS).$(BITS) 9 9 10 +export lin-headers = /usr/include/asm 11 +export fbsd-headers = /usr/include/sys 12 + 10 13 moddirs = $(wildcard k*) 11 14 binaries = $(wildcard k*/*.exe.c) 12 15 functions = $(wildcard k*/*.fn.c) 13 16 assemblies = $(wildcard k*/*.fn.${TARGET}.s) 14 17 binmods = $(sort $(dir $(binaries))) 15 18 16 19 # i'm sorry