From cf3a29feb5887344b6633ead1b4b6d5657a15a4b Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 15 Jun 2014 03:24:33 +0200 Subject: old stuff: algorithms --- algorithms/transducer/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 algorithms/transducer/Makefile (limited to 'algorithms/transducer/Makefile') diff --git a/algorithms/transducer/Makefile b/algorithms/transducer/Makefile new file mode 100644 index 0000000..d747166 --- /dev/null +++ b/algorithms/transducer/Makefile @@ -0,0 +1,24 @@ +CFLAGS += -Wall -std=gnu99 -pedantic -g + +.PHONY: all depend clean check install + +SRCS = transducer.c +OBJS = transducer.o + +all: transducer + +main: $(OBJS) + $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ + +depend: + makedepend -s "# makedepend depends on me"\ + -- $(CFLAGS) -- $(SRCS) + +clean: + rm -f $(OBJS) transducer + +check: + @echo "No checks defined, sorry" + +install: + @echo "Nothing to install yet" -- cgit v1.2.3