diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-08 11:14:29 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-08 11:14:29 -0800 |
commit | 52b19511222980138faddb2047707baceff0a596 (patch) | |
tree | 82243836e6dc51e4feeff7301f0f98288172a861 /src/telelco-v0.2 | |
parent | a1e4750a7d4af72e8e9086735885f48c9b56c18e (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/telelco-v0.2')
-rw-r--r-- | src/telelco-v0.2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/telelco-v0.2/Makefile b/src/telelco-v0.2/Makefile index 2fb4db5e..32cf7edd 100644 --- a/src/telelco-v0.2/Makefile +++ b/src/telelco-v0.2/Makefile @@ -77,11 +77,12 @@ CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) -Os -g PROGNAME=telelco-v0.2 PROG=$(PROGNAME)-$(VERSION).elf +HEX=$(PROGNAME)-$(VERSION).ihx SRC=$(ALTOS_SRC) ao_telelco.c OBJ=$(SRC:.c=.o) -all: $(PROG) +all: $(PROG) $(HEX) $(PROG): Makefile $(OBJ) altos.ld $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS) |