Add a root directory Makefile that forwards to src/ one

This commit is contained in:
Maxime Coste 2019-11-10 11:14:56 +11:00
parent 11975b7f31
commit 1713d1db7a

7
Makefile Normal file
View File

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