Add a root directory Makefile that forwards to src/ one

main
Maxime Coste 2019-11-10 11:14:56 +11:00
parent 11975b7f31
commit 1713d1db7a
1 changed files with 7 additions and 0 deletions

7
Makefile 100644
View File

@ -0,0 +1,7 @@
all:
$(MAKE) -C src $@
%: FORCE
$(MAKE) -C src $@
.PHONY: all FORCE