aboutsummaryrefslogtreecommitdiff
path: root/zumo/strlutest/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-06-07 14:13:04 +0200
committerlonkaars <loek@pipeframe.xyz>2023-06-07 14:13:04 +0200
commit2903e61cbe2eeff3121f67da516ea195999f0bba (patch)
tree66b639d73c6f35012732e4e8b9db508691aee28e /zumo/strlutest/makefile
parent74527f9b5a51eca49734a50a5b78e26e2d824776 (diff)
string lookup for display
Diffstat (limited to 'zumo/strlutest/makefile')
-rw-r--r--zumo/strlutest/makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/zumo/strlutest/makefile b/zumo/strlutest/makefile
new file mode 100644
index 0000000..f05e0ba
--- /dev/null
+++ b/zumo/strlutest/makefile
@@ -0,0 +1,21 @@
+CPP = g++
+LD = g++
+RM = rm -f
+CFLAGS =
+LFLAGS =
+TARGET = strlutest
+
+SRCS := strlutest.cpp
+OBJS := strlutest.o
+
+all: strlutest
+
+%.o: %.cpp
+ $(CPP) -c $(CFLAGS) $< -o $@
+
+$(TARGET): $(OBJS)
+ $(LD) $^ $(LFLAGS) -o $@
+
+clean:
+ $(RM) $(TARGET) $(OBJS)
+