rsyslog/grammar/makefile.stand-alone
2011-07-05 08:21:04 +02:00

15 lines
297 B
Plaintext

rscript: lex.yy.c utils.o rscript.tab.h utils.h
gcc -DSTAND_ALONE -g -o rscript lex.yy.c rscript.tab.c utils.o -lestr
lex.yy.c: rscript.l rscript.tab.h
flex rscript.l
rscript.tab.h: rscript.y
bison -d rscript.y
utils.o: utils.c utils.h
gcc -g -DSTAND_ALONE -Wall -c utils.c
clean:
rm *.o