Last active
October 16, 2017 18:10
-
-
Save Sleepful/ec626070d436d1c12e2ea0a21c33d0a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: bison | |
bison: main.o lex.yy.c | |
cc -o $@ main.o bison.tab.c lex.yy.c -lfl | |
main.o: main.c | |
cc -c main.c | |
lex.yy.c: bison.l bison.y | |
bison -d bison.y | |
flex bison.l | |
clean: | |
rm bison.tab.c lex.yy.c bison bison.tab.h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment