summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/analysis/disass/Makefile')
-rw-r--r--tests/analysis/disass/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/analysis/disass/Makefile b/tests/analysis/disass/Makefile
index 6f12036..8155642 100644
--- a/tests/analysis/disass/Makefile
+++ b/tests/analysis/disass/Makefile
@@ -1,10 +1,13 @@
-EXECUTABLES=hello
+EXECUTABLES=hello endofname
all: $(EXECUTABLES)
hello: hello.c
$(ARM_CROSS)gcc $< -o $@
+endofname: endofname.c
+ $(ARM_CROSS)gcc $< -o $@
+
clean:
rm -f $(EXECUTABLES)