diff options
Diffstat (limited to 'tests/analysis/Makefile')
-rw-r--r-- | tests/analysis/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/analysis/Makefile b/tests/analysis/Makefile new file mode 100644 index 0000000..d15b2c4 --- /dev/null +++ b/tests/analysis/Makefile @@ -0,0 +1,10 @@ + +EXECUTABLES=hm + +all: $(EXECUTABLES) + +hm: hm.c + $(ARM_CROSS)gcc $< -o $@ + +clean: + rm -f $(EXECUTABLES) |