altos: remove usbtrng support (chaoskey prototypes)
[fw/altos] / src / usbtrng-v2.0 / Makefile
diff --git a/src/usbtrng-v2.0/Makefile b/src/usbtrng-v2.0/Makefile
deleted file mode 100644 (file)
index 678a24d..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#
-# AltOS build
-#
-#
-
-include ../stmf0/Makefile.defs
-
-INC = \
-       ao.h \
-       ao_arch.h \
-       ao_arch_funcs.h \
-       ao_pins.h \
-       ao_product.h \
-       ao_task.h \
-       ao_adc_fast.h \
-       stm32f0.h
-
-#
-# Common AltOS sources
-#
-ALTOS_SRC = \
-       ao_interrupt.c \
-       ao_timer.c \
-       ao_panic.c \
-       ao_mutex.c \
-       ao_dma_stm.c \
-       ao_adc_fast.c \
-       ao_crc_stm.c \
-       ao_stdio.c \
-       ao_led_stmf0.c \
-       ao_romconfig.c \
-       ao_boot_chain.c \
-       ao_cmd.c \
-       ao_usb_stm.c \
-       ao_trng.c \
-       ao_task.c \
-       ao_product.c
-
-PRODUCT=usbtrng-v2.0
-PRODUCT_DEF=-DUSBTRNG_V_2_0
-IDPRODUCT=0x0028
-
-CFLAGS = $(PRODUCT_DEF) $(STMF0_CFLAGS) -g -Os
-
-PROGNAME=usbtrng-v2.0
-PROG=$(PROGNAME)-$(VERSION).elf
-HEX=$(PROGNAME)-$(VERSION).ihx
-
-SRC=$(ALTOS_SRC) ao_usbtrng.c
-OBJ=$(SRC:.c=.o)
-
-all: $(PROG) $(HEX)
-
-$(PROG): Makefile $(OBJ) altos.ld
-       $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
-
-ao_product.h: ao-make-product.5c ../Version
-       $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@
-
-$(OBJ): $(INC)
-
-distclean:     clean
-
-clean:
-       rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx
-       rm -f ao_product.h
-
-install:
-
-uninstall: