summaryrefslogtreecommitdiff
path: root/src/telescience-v0.2
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-12-08 11:14:29 -0800
committerKeith Packard <keithp@keithp.com>2013-12-08 11:14:29 -0800
commit52b19511222980138faddb2047707baceff0a596 (patch)
tree82243836e6dc51e4feeff7301f0f98288172a861 /src/telescience-v0.2
parenta1e4750a7d4af72e8e9086735885f48c9b56c18e (diff)
altos: Build .ihx files for all arm projects
The .ihx version can be processed by the java loader Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/telescience-v0.2')
-rw-r--r--src/telescience-v0.2/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/telescience-v0.2/Makefile b/src/telescience-v0.2/Makefile
index c53a6cc3..d76183c5 100644
--- a/src/telescience-v0.2/Makefile
+++ b/src/telescience-v0.2/Makefile
@@ -61,11 +61,12 @@ CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) $(SAMPLE_PROFILE_DEF) $(STA
PROGNAME=telescience-v0.2
PROG=$(PROGNAME)-$(VERSION).elf
+HEX=$(PROGNAME)-$(VERSION).ihx
SRC=$(ALTOS_SRC) ao_telescience.c
OBJ=$(SRC:.c=.o)
-all: $(PROG)
+all: $(PROG) $(HEX)
$(PROG): Makefile $(OBJ) altos.ld
$(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)