From 2903e61cbe2eeff3121f67da516ea195999f0bba Mon Sep 17 00:00:00 2001 From: lonkaars Date: Wed, 7 Jun 2023 14:13:04 +0200 Subject: string lookup for display --- zumo/strlutest/makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 zumo/strlutest/makefile (limited to 'zumo/strlutest/makefile') 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) + -- cgit v1.2.3