blob: 2d6836cd6d5ac70c076b5dc6f85dd806a80a886a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.1 2018/07/10 22:12:43 florian Exp $
PROG= ractl
SRCS= ractl.c parser.c
MAN= ractl.8
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../rad
LDADD= -lutil
DPADD= ${LIBUTIL}
.include <bsd.prog.mk>
|