Add a root Makefile for running targets in subdirectories.

This commit is contained in:
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 Normal file
View File

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