summaryrefslogtreecommitdiff
path: root/algorithms/transducer/Makefile
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-06-15 03:24:33 +0200
committerPatrick Simianer <p@simianer.de>2014-06-15 03:24:33 +0200
commitcf3a29feb5887344b6633ead1b4b6d5657a15a4b (patch)
treef1149508f7305a48dba0226699dfafdd68d81969 /algorithms/transducer/Makefile
parent5ddc763ab9953eebdaf78af4eb72288d7955b310 (diff)
old stuff: algorithms
Diffstat (limited to 'algorithms/transducer/Makefile')
-rw-r--r--algorithms/transducer/Makefile24
1 files changed, 24 insertions, 0 deletions
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"