summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-26 13:44:07 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-26 13:44:07 +0200
commit5f8c1d144b3c91f2c4ba75d709a74d83c1f3d5a0 (patch)
treef842fc870c24e5b913aa277747985f68f99b951a /Makefile
parentb5cc10cff15797bc9f89724ab53ac7d296fbbc0c (diff)
ast and cleanup
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 1c63b58..0000000
--- a/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-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 \
- build/grammar.tab.c build/lex.yy.c \
- -I ./ \
- -lfl -ly