summaryrefslogtreecommitdiff
path: root/bin/systrace/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/systrace/Makefile')
-rw-r--r--bin/systrace/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/systrace/Makefile b/bin/systrace/Makefile
new file mode 100644
index 00000000000..615c85b152f
--- /dev/null
+++ b/bin/systrace/Makefile
@@ -0,0 +1,17 @@
+# $OpenBSD: Makefile,v 1.1 2002/06/04 17:20:04 provos Exp $
+
+PROG= systrace
+CFLAGS+= -I.
+SRCS= filter.c intercept-translate.c intercept.c \
+ openbsd-syscalls.c util.c \
+ policy.c systrace-errno.h systrace-error.c \
+ systrace-translate.c systrace.c \
+ parse.c lex.l
+YFLAGS= -d
+CLEANFILES+= parse.c parse.h
+NOMAN=
+
+parse.c: parse.y
+ ${YACC} -d -o parse.c ${.CURDIR}/parse.y
+
+.include <bsd.prog.mk>