aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgus knight <waddlesplash@gmail.com>2015-07-29 09:05:56 -0400
committergus knight <waddlesplash@gmail.com>2015-07-29 09:59:07 -0400
commit271abe711798868717e3a6b046eab2bab8920016 (patch)
tree0cbf395e5f7e548c017f8deb9dfb8625e447a7ab /Makefile
parent770fd39bd18b058d9a8bc5707863b10ee3bc4a64 (diff)
downloadtinycc-271abe711798868717e3a6b046eab2bab8920016.tar.gz
tinycc-271abe711798868717e3a6b046eab2bab8920016.tar.bz2
Add a root Makefile for running targets in subdirectories.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
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