Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games Only build factor(6) if ${MKCRYPTO} != no.



details:   https://anonhg.NetBSD.org/src/rev/4554e0cc0a99
branches:  trunk
changeset: 532814:4554e0cc0a99
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sat Jun 15 16:08:17 2002 +0000

description:
Only build factor(6) if ${MKCRYPTO} != no.

diffstat:

 games/Makefile |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r a29ee4cce8a5 -r 4554e0cc0a99 games/Makefile
--- a/games/Makefile    Sat Jun 15 14:41:09 2002 +0000
+++ b/games/Makefile    Sat Jun 15 16:08:17 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.17 1999/07/22 01:09:00 mrg Exp $
+#      $NetBSD: Makefile,v 1.18 2002/06/15 16:08:17 simonb Exp $
 #      @(#)Makefile    8.3 (Berkeley) 7/24/94
 
 # Missing: ching dungeon warp
@@ -6,9 +6,13 @@
 # Don't belong: xneko xroach
 
 SUBDIR=        adventure arithmetic atc backgammon banner battlestar bcd boggle \
-       caesar canfield countmail cribbage dm factor fish fortune gomoku hack \
+       caesar canfield countmail cribbage dm fish fortune gomoku hack \
        hangman hunt larn mille monop morse number phantasia pig pom ppt \
        primes quiz rain random robots rogue sail snake tetris trek wargames \
        worm worms wtf wump
 
+.if (${MKCRYPTO} != "no")
+SUBDIR+= factor
+.endif
+
 .include <bsd.subdir.mk>



Home | Main Index | Thread Index | Old Index