summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0683104
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+.POSIX:
+
+CFLAGS=-D_XOPEN_SOURCE=700 -g
+
+all: l
+
+l: lex-ere.l lex-ere.y
+ yacc -b lex-ere -d lex-ere.y
+ lex -t lex-ere.l > lex-ere.yy.c
+ cc -o $@ lex-ere.yy.c lex-ere.tab.c -ll -ly
+
+lex: lex.c
+
+libl.a: libl.a(libl.o)
+
+clean:
+ rm -f lex *.o *.a lex.yy.c