Makefile changes

This commit is contained in:
Yehia Hafez
2024-10-01 09:14:35 -05:00
parent b33eaccb5c
commit 7d3a1eadcc

View File

@@ -1,7 +1,7 @@
## This makefile is explicitly for GNU Make, and to cross-compile for FreeBSD
## You MUST define MAKESYSPATH below, or you can't build for BSD.
.PHONY: all clean bsd
.PHONY: all clean macos
export MAKESYSPATH=/home/yehia/extra_storage/freebsd_src/usr/src/share/mk
@@ -12,3 +12,7 @@ all:
clean:
if [ -d "$(MAKESYSPATH)" ]; then bmake -C kernel/freebsd clean; fi
$(MAKE) -C test clean
macos:
$(MAKE) -C kernel/macos
$(MAKE) -C tools