diff options
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 |