summaryrefslogtreecommitdiff
path: root/bpfc
diff options
context:
space:
mode:
Diffstat (limited to 'bpfc')
-rw-r--r--bpfc/.gitignore4
-rw-r--r--bpfc/Makefile12
2 files changed, 16 insertions, 0 deletions
diff --git a/bpfc/.gitignore b/bpfc/.gitignore
new file mode 100644
index 0000000..32aad4d
--- /dev/null
+++ b/bpfc/.gitignore
@@ -0,0 +1,4 @@
+*.*
+
+!.gitignore
+!Makefile
diff --git a/bpfc/Makefile b/bpfc/Makefile
new file mode 100644
index 0000000..4451f64
--- /dev/null
+++ b/bpfc/Makefile
@@ -0,0 +1,12 @@
+bpfc-libs =
+
+bpfc-objs = xmalloc.o \
+ xutils.o \
+ bpf.o \
+ bpf_lexer.yy.o \
+ bpf_parser.tab.o \
+ bpfc.o
+
+bpfc-lex = bpf_lexer.yy.o
+
+bpfc-yaac = bpf_parser.tab.o