blob: 4a18c4a57a48c1e4412689b1cd82edf6f238adaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile,v 1.7 2013/10/27 03:06:25 aalm Exp $
.if (${MACHINE} == "i386" || ${MACHINE} == "macppc" || \
${MACHINE} == "amd64" || ${MACHINE} == "armv7")
PROG= gpioctl
SRCS= gpioctl.c
CFLAGS+=-Wall
CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
CFLAGS+=-Wmissing-declarations
CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
.else
NOPROG= yes
.endif
MAN= gpioctl.8
MANSUBDIR=i386 macppc amd64 armv7
.include <bsd.prog.mk>
|