blob: 6be464cda2547e499cd1c4f4b915dd499b7a1aeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.8 2002/10/16 15:01:08 itojun Exp $
PROG= systrace
BINDIR?= /bin
CFLAGS+=-I.
CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \
-Wno-uninitialized -Werror
CFLAGS+=-DYY_NO_UNPUT
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 alias.c register.c \
parse.y lex.l
CLEANFILES+= parse.c lex.c y.tab.h
.include <bsd.prog.mk>
.depend: parse.c lex.c
|