summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 3830946..0000000
--- a/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-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