Executables are not always .elf files

Change-Id: I1abebbe9d3e7a4a208ba912f1f29ceddf23617ca
This commit is contained in:
Romain Goyet
2016-11-05 21:01:06 +01:00
parent 8cc570e6f4
commit 84430961da
5 changed files with 15 additions and 10 deletions

View File

@@ -9,6 +9,6 @@ $(symbols_file): $(tests)
runner_objs += $(addprefix quiz/src/, runner.o symbols.o)
test_objs = $(subst .c,.o, $(subst .cpp,.o,$(tests)))
products += test.elf test.hex test.bin $(runner_objs) $(test_objs)
products += test.$(EXE) test.hex test.bin $(runner_objs) $(test_objs)
test.elf: $(objs) $(runner_objs) $(test_objs)
test.$(EXE): $(objs) $(runner_objs) $(test_objs)