summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Makefile b/test/Makefile
deleted file mode 100644
index 3bf5a70..0000000
--- a/test/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-include $(TEENSY_PATH)/include/flags.mk
-
-CXXFLAGS += -std=gnu++20
-
-LIBS = -lm -lstdc++ -lteensy-core
-
-CPP_FILES := $(wildcard *.cpp)
-TARGETS := $(CPP_FILES:.cpp=.hex)
-
-%.elf: %.o
- $(CC) $(LDFLAGS) -o $@ $< $(LIBS)
-
-%.hex: %.elf
- $(SIZE) $<
- $(OBJCOPY) -O ihex -R .eeprom $< $@
-
-all: $(TARGETS)