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/wsfontload | |
parent | e6edc94e5beef874c6ad0bef33f4b5319c9eb564 (diff) |
make it compiling only for alpha and hppa
Diffstat (limited to 'usr.sbin/wsfontload')
-rw-r--r-- | usr.sbin/wsfontload/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/usr.sbin/wsfontload/Makefile b/usr.sbin/wsfontload/Makefile index 57610c8cba3..053f38031c8 100644 --- a/usr.sbin/wsfontload/Makefile +++ b/usr.sbin/wsfontload/Makefile @@ -1,8 +1,16 @@ -# $OpenBSD: Makefile,v 1.1 2000/07/02 01:29:44 mickey Exp $ -# $NetBSD: Makefile,v 1.1 1999/01/13 17:15:44 drochner Exp $ +# $OpenBSD: Makefile,v 1.2 2000/07/02 02:07:11 mickey Exp $ + +.if ${MACHINE} == "alpha" || ${MACHINE} == "hppa" PROG= wsfontload -MAN= wsfontload.8 SRCS= wsfontload.c +.else + +NOPROG=yes + +.endif + +MAN= wsfontload.8 + .include <bsd.prog.mk> |