diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-02-12 15:31:09 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-02-12 15:31:09 +0000 |
commit | 394bb229a87e8ed9e91e633d23b7599a6c7543c3 (patch) | |
tree | a108b13a0f1c8c402192c5a9c756da023a741cdb | |
parent | f74f93fec0135914b0611d4c43bfb7db70a49359 (diff) |
Let non-amiga build amiga manpages.
-rw-r--r-- | sys/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/Makefile b/sys/Makefile index 343d3f9a2ed..74db124ad87 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,12 +1,17 @@ -# $OpenBSD: Makefile,v 1.4 1998/05/18 14:28:15 mickey Exp $ +# $OpenBSD: Makefile,v 1.5 2000/02/12 15:31:08 espie Exp $ # $NetBSD: Makefile,v 1.5 1995/09/15 21:05:21 pk Exp $ .if make(obj) -SUBDIR= arch/alpha arch/amiga arch/arc arch/hp300 arch/i386 \ +SUBDIR= arch/alpha arch/arc arch/hp300 arch/i386 \ arch/m68k arch/mac68k arch/mvme68k arch/pmax arch/powerpc \ arch/sparc arch/wgrisc arch/vax .else SUBDIR+= arch/${MACHINE} .endif +# For manpages +.if ${MACHINE} != "amiga" +SUBDIR+= arch/amiga +.endif + .include <bsd.subdir.mk> |