diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-07-02 02:07:12 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-07-02 02:07:12 +0000 |
commit | 09669726ba55465d90e8d2125b6f8d785dd0a78b (patch) | |
tree | 39f022f91fc50971d00adeedc961c8bc85d53ef6 /usr.sbin/wsconscfg | |
parent | e6edc94e5beef874c6ad0bef33f4b5319c9eb564 (diff) |
make it compiling only for alpha and hppa
Diffstat (limited to 'usr.sbin/wsconscfg')
-rw-r--r-- | usr.sbin/wsconscfg/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/usr.sbin/wsconscfg/Makefile b/usr.sbin/wsconscfg/Makefile index 51c62d8f9b6..9326e890d43 100644 --- a/usr.sbin/wsconscfg/Makefile +++ b/usr.sbin/wsconscfg/Makefile @@ -1,8 +1,16 @@ -# $OpenBSD: Makefile,v 1.1 2000/07/02 01:25:24 mickey Exp $ -# $NetBSD: Makefile,v 1.3 1997/10/18 04:38:06 lukem Exp $ +# $OpenBSD: Makefile,v 1.2 2000/07/02 02:07:10 mickey Exp $ + +.if ${MACHINE} == "alpha" || ${MACHINE} == "hppa" PROG= wsconscfg -MAN= wsconscfg.8 SRCS= wsconscfg.c +.else + +NOPROG=yes + +.endif + +MAN= wsconscfg.8 + .include <bsd.prog.mk> |