aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFredrik Thulin <fredrik@thulin.net>2015-01-15 17:04:03 +0100
committerFredrik Thulin <fredrik@thulin.net>2015-01-15 17:04:03 +0100
commit39cac7918987fc603dc54886e107af026583592e (patch)
treeacb95e5cebc2f410840659cc7e6d1a74331e3985 /Makefile
parent3347165e2927ec73014eafdfc0c650904a4b67d4 (diff)
init
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..134ab13
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+APPLICATION = entropy
+SRCDIR = src/$(APPLICATION)
+
+all: target
+
+world: target
+
+target:
+ make -C $(SRCDIR)
+
+flash-target:
+ make -C $(SRCDIR) flash-target
+
+clean:
+ make -C $(SRCDIR) clean
+
+really-clean:
+ make -C $(SRCDIR) really-clean