diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2015-01-15 17:04:03 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2015-01-15 17:04:03 +0100 |
commit | 39cac7918987fc603dc54886e107af026583592e (patch) | |
tree | acb95e5cebc2f410840659cc7e6d1a74331e3985 /Makefile | |
parent | 3347165e2927ec73014eafdfc0c650904a4b67d4 (diff) |
init
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
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 |