diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2018-11-18 22:21:14 (GMT) |
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2018-11-18 22:21:14 (GMT) |
| commit | ea090774bf3b5849422de9af8c294b3e9d00105b (patch) | |
| tree | 4bd0218b1e260a6d84d3102768452902b1123926 /tests/analysis/disass/Makefile | |
| parent | 0f914ad3fdcc1ebac5789b55b9677e7868016e21 (diff) | |
Extended the Python bindings dealing with code blocks.
Diffstat (limited to 'tests/analysis/disass/Makefile')
| -rw-r--r-- | tests/analysis/disass/Makefile | 10 |
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) |
