summaryrefslogtreecommitdiff
path: root/src/telerepeat-v1.0/Makefile
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-08-05 12:17:19 +0800
committerKeith Packard <keithp@keithp.com>2018-10-13 08:21:58 -0700
commit56629222711ba3ef7853405c9b07ad614fb29b95 (patch)
treedcd25b54f45a09a60f3bb1320c66e9780771a704 /src/telerepeat-v1.0/Makefile
parent382b3ef62a09e580834b07faf9ed2d00e5ce1621 (diff)
altos: Remove cc1111 products
We're not testing these anyways; building new firmware for them is not helpful. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/telerepeat-v1.0/Makefile')
-rw-r--r--src/telerepeat-v1.0/Makefile100
1 files changed, 0 insertions, 100 deletions
diff --git a/src/telerepeat-v1.0/Makefile b/src/telerepeat-v1.0/Makefile
deleted file mode 100644
index 17f68377..00000000
--- a/src/telerepeat-v1.0/Makefile
+++ /dev/null
@@ -1,100 +0,0 @@
-#
-# TeleRepeat build file
-#
-
-TELEREPEAT_VER=1.0
-TELEREPEAT_DEF=1_0
-
-vpath %.c ..:../kernel:../cc1111:../drivers:../product
-vpath %.h ..:../kernel:../cc1111:../drivers:../product
-vpath ao-make-product.5c ../util
-
-ifndef VERSION
-include ../Version
-endif
-
-INC = \
- ao.h \
- ao_pins.h \
- ao_arch.h \
- ao_arch_funcs.h \
- cc1111.h \
- ao_product.h
-
-CORE_SRC = \
- ao_cmd.c \
- ao_config.c \
- ao_monitor.c \
- ao_mutex.c \
- ao_panic.c \
- ao_state.c \
- ao_stdio.c \
- ao_task.c \
- ao_forward.c \
- ao_storage.c \
- ao_freq.c
-
-CC1111_SRC = \
- ao_dbg.c \
- ao_adc.c \
- ao_dma.c \
- ao_led.c \
- ao_packet.c \
- ao_intflash.c \
- ao_packet_master.c \
- ao_radio.c \
- ao_romconfig.c \
- ao_serial.c \
- ao_string.c \
- ao_timer.c \
- ao_usb.c \
- _bp.c
-
-DRIVER_SRC = \
- ao_btm.c
-
-PRODUCT_SRC = \
- ao_telerepeat.c
-
-SRC = \
- $(CORE_SRC) \
- $(CC1111_SRC) \
- $(DRIVER_SRC) \
- $(PRODUCT_SRC)
-
-PROGNAME = telerepeat-v$(TELEREPEAT_VER)
-PROG = $(PROGNAME)-$(VERSION).ihx
-PRODUCT=TeleRepeat-v$(TELEREPEAT_VER)
-PRODUCT_DEF=-DTELEREPEAT_V_$(TELEREPEAT_DEF)
-IDPRODUCT=0x000e
-CODESIZE=0x7800
-
-include ../cc1111/Makefile.cc1111
-
-NICKLE=nickle
-CHECK_STACK=sh ../util/check-stack
-
-V=0
-# The user has explicitly enabled quiet compilation.
-ifeq ($(V),0)
-quiet = @printf " $1 $2 $@\n"; $($1)
-endif
-# Otherwise, print the full command line.
-quiet ?= $($1)
-
-all: $(PROG)
-
-$(PROG): $(REL) Makefile
- $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(REL)
- $(call quiet,CHECK_STACK) ../cc1111/ao_arch.h $(PMEM) || rm $@
-
-ao_product.h: ao-make-product.5c ../Version
- $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@
-
-distclean: clean
-
-clean: clean-cc1111
-
-install:
-
-uninstall: