Files
zmap-freebsd/filter_sandbox/Makefile
T

9 lines
140 B
Makefile
Raw Normal View History

2013-09-13 15:32:17 -04:00
all:
gcc -c tree.c -o tree.o
lex zmap.l
yacc -d --debug --verbose zmap.y
gcc tree.o lex.yy.c y.tab.c -o test
clean:
rm *.o a.out test