diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2015-07-17 10:36:18 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2015-07-17 10:36:18 +0200 |
commit | 8dd5dd6b3992a6b6e72dc97bdf947c0746b6bf20 (patch) | |
tree | 247e5e0b189a1bbd2a27185653e83e69674f5e0e /Makefile |
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..1ea8f09 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +APPLICATION = uart-test +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 |