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/easymini-v1.0 | |
| 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/easymini-v1.0')
| -rw-r--r-- | src/easymini-v1.0/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/easymini-v1.0/Makefile b/src/easymini-v1.0/Makefile index 6ab79425..8042874f 100644 --- a/src/easymini-v1.0/Makefile +++ b/src/easymini-v1.0/Makefile @@ -54,11 +54,12 @@ CFLAGS = $(PRODUCT_DEF) $(LPC_CFLAGS) -g -Os PROGNAME=easymini-v1.0 PROG=$(PROGNAME)-$(VERSION).elf +HEX=$(PROGNAME)-$(VERSION).ihx SRC=$(ALTOS_SRC) ao_easymini.c OBJ=$(SRC:.c=.o) -all: $(PROG) +all: $(PROG) $(HEX) $(PROG): Makefile $(OBJ) altos.ld $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS) @@ -74,7 +75,7 @@ load: $(PROG) distclean: clean clean: - rm -f *.o $(PROG) + rm -f *.o $(PROGNAME)-*.elf rm -f ao_product.h install: |
