Add a root Makefile for running targets in subdirectories.

master
gus knight 2015-07-29 09:05:56 -04:00
parent 770fd39bd1
commit 271abe7117
1 changed files with 8 additions and 0 deletions

8
Makefile 100644
View File

@ -0,0 +1,8 @@
SRC_DIR = src
.PHONY: default
default:
$(MAKE) -C $(SRC_DIR)
clean:
$(MAKE) -C $(SRC_DIR) clean