summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-15 22:00:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-15 22:00:38 (GMT)
commit831f90f15a145636177c387fdd73d777a9e6d84f (patch)
tree2144026093c2b35b49660343961af12b0847c1d0 /tests/analysis/disass/Makefile
parent487e574f590d20ce40545030e7a4c80d95308788 (diff)
Improved complex loop detection.
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 ef70dec..17df230 100644
--- a/tests/analysis/disass/Makefile
+++ b/tests/analysis/disass/Makefile
@@ -1,5 +1,5 @@
-EXECUTABLES=hello endofname irreducible selfloop
+EXECUTABLES=hello endofname irreducible selfloop evalcommand
all: $(EXECUTABLES)
@@ -15,5 +15,8 @@ irreducible: irreducible.c
selfloop: selfloop.c
$(ARM_CROSS)gcc $< -o $@
+evalcommand: evalcommand.c
+ $(ARM_CROSS)gcc $< -o $@
+
clean:
rm -f $(EXECUTABLES)