blob: c262224c4cbea6886714c63e67b8d31c53eb9d1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.8 2017/01/23 03:12:25 jsg Exp $
.if ${MACHINE} == "amd64" || ${MACHINE} == "arm64" || \
${MACHINE} == "armv7" || ${MACHINE} == "i386" || \
${MACHINE} == "macppc"
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>
|