diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-01-08 22:29:47 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-01-08 22:29:47 (GMT) |
commit | 2ed3c9274c8dafb660bc25743a1aac7c72c12965 (patch) | |
tree | e3f20c5ebfe947163442144aba29a1d62462ac7d /tests/analysis/disass/Makefile | |
parent | 8f77fd4f0a73a92087b185af0b45d70607268107 (diff) |
Marked the ARMv7 branch instructions with the LR register as return points.
Diffstat (limited to 'tests/analysis/disass/Makefile')
-rw-r--r-- | tests/analysis/disass/Makefile | 5 |
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) |