blob: 83725795dc6dc4c2e91152b4efcf4daf4b13e627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile,v 1.4 2006/11/29 22:15:33 deraadt Exp $
.if ${MACHINE} == "i386" || ${MACHINE} == "macppc"
PROG= gpioctl
SRCS= gpioctl.c
CFLAGS+=-Wall
CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
CFLAGS+=-Wmissing-declarations -Wredundant-decls
CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
.else
NOPROG= yes
.endif
MAN= gpioctl.8
MANSUBDIR=i386 macppc
.include <bsd.prog.mk>
|