blob: 411e65060f161b10283736a9d420c6642293d8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.10 2002/08/12 10:47:43 miod Exp $
.if ${MACHINE} == "i386" || ${MACHINE} == "alpha" || ${MACHINE} == "hppa" || \
${MACHINE} == "macppc" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64"
PROG= wsconscfg
SRCS= wsconscfg.c
.else
NOPROG=yes
.endif
MAN= wsconscfg.8
MANSUBDIR= alpha hppa i386 macppc sparc sparc64
.include <bsd.prog.mk>
|