Skip to content

Instantly share code, notes, and snippets.

@Sleepful
Last active October 16, 2017 18:10
Show Gist options
  • Save Sleepful/ec626070d436d1c12e2ea0a21c33d0a3 to your computer and use it in GitHub Desktop.
Save Sleepful/ec626070d436d1c12e2ea0a21c33d0a3 to your computer and use it in GitHub Desktop.
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