mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 17:20:42 +01:00
15 lines
297 B
Plaintext
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
|