externalized os.mk

This commit is contained in:
Tom Everett
2016-03-25 13:24:07 -06:00
parent f0674b42e8
commit b85cf3e16d
3 changed files with 44 additions and 37 deletions
+6 -4
View File
@@ -1,14 +1,16 @@
include build/os.mk
all: buildit
buildit:
cd build && make all
cd build && $(MAKE) all
run: buildit
cd build && make run
cd build && $(MAKE) run
altrun: buildit
cd build && make alt && make altrun
cd build && $(MAKE) alt && $(MAKE) altrun
clean:
cd build && make clean
cd build && $(MAKE) clean