diff options
author | Keith Packard <keithp@keithp.com> | 2017-04-02 16:17:33 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-04-02 16:17:33 -0700 |
commit | 6fb817f218a69b28973b0d059d71809717b1e2d1 (patch) | |
tree | e204ebafa19daf51567fad9e7c9448b9cab01b00 /src/cortexelf-v1 | |
parent | 3ce663875d69739cc2d43fcd88b22820cd9d6500 (diff) |
lisp: Fix up lisp build so projects can get ao_lisp_const.h built as needed
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/cortexelf-v1')
-rw-r--r-- | src/cortexelf-v1/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cortexelf-v1/Makefile b/src/cortexelf-v1/Makefile index 66f18045..cea75ddf 100644 --- a/src/cortexelf-v1/Makefile +++ b/src/cortexelf-v1/Makefile @@ -102,7 +102,7 @@ HEX=$(PROGNAME)-$(VERSION).ihx SRC=$(ALTOS_SRC) ao_cortexelf.c OBJ=$(SRC:.c=.o) -all: $(PROG) $(HEX) +all:: $(PROG) $(HEX) $(PROG): Makefile $(OBJ) cortexelf.ld $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS) @@ -117,10 +117,12 @@ ao_product.h: ao-make-product.5c ../Version distclean: clean -clean: +clean:: rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx rm -f ao_product.h +include ../lisp/Makefile-lisp + install: uninstall: |