zmap-freebsd/filter_sandbox/Makefile
David Adrian 9693b66024 Initial import of filter parser
Current runs as its own program, partially implemented.
Commiting for the sake of sharing access / backup.
Still needs a lot of work.
2013-10-03 14:28:44 -04:00

9 lines
140 B
Makefile

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