Build: Add top level Makefile

makefile-conf
heck 2021-09-09 20:50:04 +02:00
parent c82e07c7cf
commit 6a41dc40f2
1 changed files with 19 additions and 0 deletions

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
.PHONY: src test install uninstall clean
all: src
src:
$(MAKE) -C src
#test: src
# $(MAKE) -C test
clean:
$(MAKE) -C src clean
# $(MAKE) -C test clean
install:
$(MAKE) -C src install
uninstall:
$(MAKE) -C src uninstall