summaryrefslogtreecommitdiff
path: root/seccomp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'seccomp/Makefile')
-rw-r--r--seccomp/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/seccomp/Makefile b/seccomp/Makefile
new file mode 100644
index 0000000..8401e87
--- /dev/null
+++ b/seccomp/Makefile
@@ -0,0 +1,10 @@
+TEST_PROGS := seccomp_bpf
+CFLAGS += -Wl,-no-as-needed -Wall
+LDFLAGS += -lpthread
+
+all: $(TEST_PROGS)
+
+include ../lib.mk
+
+clean:
+ $(RM) $(TEST_PROGS)