aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..6599d016
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-g -Wall
+
+test-lexing: test-lexing.o tokenize.o
+ gcc -o $@ test-lexing.o tokenize.o
+
+test-lexing.o: token.h
+tokenize.o: token.h
+
+clean:
+ rm -f *.o