Removed deprecated tests.
[goodfet] / firmware / tests / echo / Makefile
diff --git a/firmware/tests/echo/Makefile b/firmware/tests/echo/Makefile
deleted file mode 100644 (file)
index 86e4f2c..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-BSL=goodfet.bsl
-
-#mcu=msp430x1611
-mcu?=msp430x2618
-
-#ldscript is wonky
-#GCCINC=-T ../../ldscripts/161x.x
-
-CC=msp430-gcc -g -mmcu=$(mcu) -DGCC $(GCCINC) -I ../../include
-
-libs=../../lib/$(mcu).c
-app=echo
-
-install: $(app)
-       $(BSL) -e -p $(app).hex 
-       $(BSL) -P $(app).hex -r
-all: $(app).hex
-$(app): $(app).c $(libs)
-$(app).hex: $(app)
-       msp430-objcopy -O ihex $(app) $(app).hex
-erase:
-       $(BSL) -e 
-clean:
-       rm -f $(app)