summaryrefslogtreecommitdiff
path: root/tests/format/elf/Makefile
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-05-11 19:09:07 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-05-11 19:09:07 (GMT)
commit8ee7fc5db965adaa835ca87bb3d2e2d43e52fbbb (patch)
treec4b89d08fe59b5970626fc22a868ff1a0f09af16 /tests/format/elf/Makefile
parent81aec19816e053d37cea882544ca35d2203a3c5b (diff)
Handled preloaded instructions located in two cut areas (ELF overlapping).
Diffstat (limited to 'tests/format/elf/Makefile')
-rw-r--r--tests/format/elf/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/format/elf/Makefile b/tests/format/elf/Makefile
index c32392f..8695bb1 100644
--- a/tests/format/elf/Makefile
+++ b/tests/format/elf/Makefile
@@ -1,11 +1,14 @@
-EXECUTABLES=oob_section_name
+EXECUTABLES=oob_section_name overlapping_areas
all: $(EXECUTABLES)
oob_section_name: oob_section_name.o
$(ARM_CROSS)objcopy $< -O binary $@
+overlapping_areas: overlapping_areas.o
+ $(ARM_CROSS)objcopy $< -O binary $@
+
%.o: %.asm
$(ARM_CROSS)as -c $< -o $@