diff options
author | Keith Packard <keithp@keithp.com> | 2014-06-11 23:26:36 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-11 23:26:36 -0700 |
commit | 0495f1b5282d8f7449cbbc1dbf99d63818d7c03c (patch) | |
tree | 22b6d68ac2fd74f3f00e29bfc55f55df2fa1eabc /src/telegps-v0.3 | |
parent | 6f306b267f63d0f59fb77b1ce41c678042dd6802 (diff) |
altos/telegps: Build .ihx versions for TeleGPS
Needed to load with java
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/telegps-v0.3')
-rw-r--r-- | src/telegps-v0.3/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/telegps-v0.3/Makefile b/src/telegps-v0.3/Makefile index 27279792..1eaf7c47 100644 --- a/src/telegps-v0.3/Makefile +++ b/src/telegps-v0.3/Makefile @@ -60,11 +60,12 @@ CFLAGS = $(PRODUCT_DEF) $(LPC_CFLAGS) $(PROFILE_DEF) -Os -g PROGNAME=telegps-v0.3 PROG=$(PROGNAME)-$(VERSION).elf +HEX=$(PROGNAME)-$(VERSION).ihx SRC=$(ALTOS_SRC) ao_telegps.c OBJ=$(SRC:.c=.o) -all: $(PROG) +all: $(PROG) $(HEX) LDFLAGS=-L../lpc -Wl,-Taltos.ld |