Add a root Makefile for running targets in subdirectories.
This commit is contained in:
parent
770fd39bd1
commit
271abe7117
1 changed files with 8 additions and 0 deletions
8
Makefile
Normal file
8
Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
SRC_DIR = src
|
||||
|
||||
.PHONY: default
|
||||
default:
|
||||
$(MAKE) -C $(SRC_DIR)
|
||||
|
||||
clean:
|
||||
$(MAKE) -C $(SRC_DIR) clean
|
Loading…
Reference in a new issue