Home | History | Annotate | Line # | Download | only in pfctl
Makefile revision 1.1.1.1
      1  1.1  itojun #	$OpenBSD: Makefile,v 1.15 2004/03/10 18:49:49 mcbride Exp $
      2  1.1  itojun 
      3  1.1  itojun PROG=	pfctl
      4  1.1  itojun SRCS=	pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c
      5  1.1  itojun SRCS+=	pfctl_osfp.c pfctl_radix.c pfctl_table.c pfctl_qstats.c
      6  1.1  itojun CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized
      7  1.1  itojun CFLAGS+= -Wstrict-prototypes -I${.CURDIR}
      8  1.1  itojun YFLAGS=
      9  1.1  itojun MAN=	pfctl.8
     10  1.1  itojun 
     11  1.1  itojun LDADD+=	-lm
     12  1.1  itojun DPADD+=	${LIBM}
     13  1.1  itojun 
     14  1.1  itojun .include <bsd.prog.mk>
     15