diff options
| author | gus knight <waddlesplash@gmail.com> | 2015-07-29 09:05:56 -0400 |
|---|---|---|
| committer | gus knight <waddlesplash@gmail.com> | 2015-07-29 09:59:07 -0400 |
| commit | 271abe711798868717e3a6b046eab2bab8920016 (patch) | |
| tree | 0cbf395e5f7e548c017f8deb9dfb8625e447a7ab | |
| parent | 770fd39bd18b058d9a8bc5707863b10ee3bc4a64 (diff) | |
| download | tinycc-271abe711798868717e3a6b046eab2bab8920016.tar.gz tinycc-271abe711798868717e3a6b046eab2bab8920016.tar.bz2 | |
Add a root Makefile for running targets in subdirectories.
| -rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0605a74 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +SRC_DIR = src + +.PHONY: default +default: + $(MAKE) -C $(SRC_DIR) + +clean: + $(MAKE) -C $(SRC_DIR) clean |
