summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-11-18 22:21:14 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-11-18 22:21:14 (GMT)
commitea090774bf3b5849422de9af8c294b3e9d00105b (patch)
tree4bd0218b1e260a6d84d3102768452902b1123926 /tests/analysis/disass/Makefile
parent0f914ad3fdcc1ebac5789b55b9677e7868016e21 (diff)
Extended the Python bindings dealing with code blocks.
Diffstat (limited to 'tests/analysis/disass/Makefile')
-rw-r--r--tests/analysis/disass/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/analysis/disass/Makefile b/tests/analysis/disass/Makefile
new file mode 100644
index 0000000..6f12036
--- /dev/null
+++ b/tests/analysis/disass/Makefile
@@ -0,0 +1,10 @@
+
+EXECUTABLES=hello
+
+all: $(EXECUTABLES)
+
+hello: hello.c
+ $(ARM_CROSS)gcc $< -o $@
+
+clean:
+ rm -f $(EXECUTABLES)