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.
This commit is contained in:
David Adrian
2013-09-13 15:32:17 -04:00
committed by David Adrian
parent 21fa755c13
commit 9693b66024
13 changed files with 4766 additions and 0 deletions

8
filter_sandbox/Makefile Normal file
View File

@ -0,0 +1,8 @@
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