Skip to content

Instantly share code, notes, and snippets.

@kurenaif
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurenaif/f156b46821cc5c5cfd83 to your computer and use it in GitHub Desktop.
Save kurenaif/f156b46821cc5c5cfd83 to your computer and use it in GitHub Desktop.
学校のflexやらyaccやらを使った課題用のMakefile
microC: y.tab.c lex.yy.c
gcc -w y.tab.c lex.yy.c -o microC
y.tab.c: microC.y
yacc -dv -y microC.y
lex.yy.c: microC.l
flex -l microC.l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment