summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-25 16:24:59 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-25 16:24:59 +0200
commitb5cc10cff15797bc9f89724ab53ac7d296fbbc0c (patch)
tree00f2ecd44cfe1c66149ec9217b60c2c9aaf262a2 /Makefile
parentf7fddeaf9f0453054d4666d8a5b544d4c4cefebd (diff)
trying ply
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 58f4163..1c63b58 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,11 @@ build: grammar.y lex.l ast.h ast.c
bison \
-o build/grammar.tab.c \
-d grammar.y \
+ -t \
#-Wcounterexamples
flex \
-o build/lex.yy.c \
+ -d \
lex.l
gcc \
-o build/henshin \