blob: a4f816b3878495cd5c700a0b97bfa9f0f80bfc7b (
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.9 2020/05/16 16:37:50 martin 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 arm64
.include <bsd.prog.mk>
|