diff options
author | Keith Packard <keithp@keithp.com> | 2019-02-18 16:23:13 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-02-18 16:23:13 -0800 |
commit | 9ea50f00039c812ea6a4a4235d78c140a0252662 (patch) | |
tree | b0a22240fea7e981318f0f67dff60fdab9276f5b | |
parent | d19f1888d736943e8b51aeb56ec7097e11a505fc (diff) |
altos/telefireone-v1.0: Clean up Makefile
Follow other projects and remove common bits which are now in
Makefile.defs
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/telefireone-v1.0/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/telefireone-v1.0/Makefile b/src/telefireone-v1.0/Makefile index 7878a0ea..b2e7eec4 100644 --- a/src/telefireone-v1.0/Makefile +++ b/src/telefireone-v1.0/Makefile @@ -75,13 +75,10 @@ OBJ=$(SRC:.c=.o) all: $(PROG) $(HEX) $(PROG): Makefile $(OBJ) altos.ld - $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS) + $(call quiet,CC) $(LDFLAGS) -o $(PROG) $(OBJ) $(LIBS) $(OBJ): $(INC) -ao_product.h: ao-make-product.5c ../Version - $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@ - distclean: clean clean: |