aboutsummaryrefslogtreecommitdiff
path: root/zumo/pidtest.mk
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-05-24 18:03:05 +0200
committerlonkaars <loek@pipeframe.xyz>2023-05-24 18:03:05 +0200
commitcef95354c69745f782a95d37f4b0e7bbf02e106a (patch)
treeff3a2ce26b1785dc88eb272f41e24ee997c6b4ed /zumo/pidtest.mk
parent4568db72dc3f9694ecae3506fc3de6ffc948b24f (diff)
uart working
Diffstat (limited to 'zumo/pidtest.mk')
-rw-r--r--zumo/pidtest.mk21
1 files changed, 0 insertions, 21 deletions
diff --git a/zumo/pidtest.mk b/zumo/pidtest.mk
deleted file mode 100644
index 5ffe1e1..0000000
--- a/zumo/pidtest.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-CPP = g++
-LD = g++
-RM = rm -f
-CFLAGS =
-LFLAGS =
-TARGET = pidtest
-
-SRCS := pidtest.cpp pid.cpp
-OBJS := pidtest.o pid.o
-
-all: pidtest
-
-%.o: %.cpp
- $(CPP) -c $(CFLAGS) $< -o $@
-
-$(TARGET): $(OBJS)
- $(LD) $^ $(LFLAGS) -o $@
-
-clean:
- $(RM) $(TARGET) $(OBJS)
-