summaryrefslogtreecommitdiffstats
path: root/feed/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-11-21 14:15:24 +0000
committerLennart Poettering <lennart@poettering.net>2005-11-21 14:15:24 +0000
commit60cd2a763756529262ae7bbe58b3272ed51e5598 (patch)
tree02443608eb4a01d1567a057a0ab9727c425aab0a /feed/Makefile
parent6a9e54615b4da50ad0f288e1bd5f0e3cea4a1fc9 (diff)
move everything down a directory
git-svn-id: file:///home/lennart/svn/public/sse/trunk@6 5fbabb74-0606-0410-a5e4-b5cc6a42724e
Diffstat (limited to 'feed/Makefile')
-rw-r--r--feed/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/feed/Makefile b/feed/Makefile
new file mode 100644
index 0000000..3830946
--- /dev/null
+++ b/feed/Makefile
@@ -0,0 +1,15 @@
+CLAGS=-Wextra -g -O2 -pipe
+LIBS=-lfl
+
+all: lex-c
+
+lex-c.yy.c: lex-c.l
+ flex -o $@ $^
+
+lex-c: lex-c.yy.o
+ $(CC) -o $@ $^ $(LIBS)
+
+clean:
+ rm -f *.o lex-c.yy.c lex-c
+
+.PHONY: all clean