summaryrefslogtreecommitdiff
path: root/as/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2022-09-08 11:11:06 -0400
committerJakob Kaivo <jkk@ung.org>2022-09-08 11:11:06 -0400
commitfd528d27b11f1d85dbf6afcd65b6bb4140e56070 (patch)
treeaa92db77886e45ab1cbd0616eeaefa1129d98556 /as/Makefile
parent5a8d69ea869636e29807955d621fa45d8a21a8d8 (diff)
handle predefined and command line macro definitions
Diffstat (limited to 'as/Makefile')
-rw-r--r--as/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/as/Makefile b/as/Makefile
deleted file mode 100644
index 99fe9de..0000000
--- a/as/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-as: as.yy.o as.tab.o
- c99 -o $@ as.yy.o as.tab.o -ly -ll
-
-as.yy.c: as.l as.tab.h
- lex -t as.l > $@
-
-as.tab.h as.tab.c: as.y
- yacc -d -b as as.y
-
-clean:
- rm -f as *.o as.yy.c as.tab.c as.tab.h