summaryrefslogtreecommitdiffstats
path: root/grammar/makefile
blob: 520d836b29dc6f4047e4b66fcb75285d8ae4537e (plain)
1
2
3
4
5
6
7
8
rscript: lex.yy.c utils.o
	gcc -o rscript lex.yy.c utils.o -lestr -lfl

lex.yy.c: rscript.l
	flex rscript.l

utils.o: utils.c
	gcc -c utils.c