]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
add gomoku game, from 4.4BSD-Lite2
authortls <tls@NetBSD.org>
Sat, 28 Dec 1996 18:56:57 +0000 (18:56 +0000)
committertls <tls@NetBSD.org>
Sat, 28 Dec 1996 18:56:57 +0000 (18:56 +0000)
Makefile
gomoku/Makefile
gomoku/bdinit.c
gomoku/bdisp.c
gomoku/gomoku.6
gomoku/gomoku.h
gomoku/main.c
gomoku/makemove.c
gomoku/pickmove.c
gomoku/stoc.c

index 12332193df85a9dfcd4bdcbead639663ea57616b..afcb582447a6e82cf4be3176d0ede80a4a044443 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.11 1995/03/25 22:53:48 cgd Exp $
+#      $NetBSD: Makefile,v 1.12 1996/12/28 18:59:05 tls Exp $
 #      @(#)Makefile    8.2 (Berkeley) 3/31/94
 
 # Missing: ching dungeon hunt warp
@@ -6,9 +6,9 @@
 # Don't belong: xneko xroach
 
 SUBDIR=        adventure arithmetic atc backgammon banner battlestar bcd boggle \
-       caesar canfield cribbage dm factor fish fortune hack hangman \
-       larn mille monop morse number phantasia pig pom ppt primes quiz \
-       rain random robots rogue sail snake tetris trek wargames worm worms \
-       wump
+       caesar canfield cribbage dm factor fish fortune gomoku hack \
+       hangman larn mille monop morse number phantasia pig pom ppt primes \
+       quiz rain random robots rogue sail snake tetris trek wargames worm \
+       worms wump
 
 .include <bsd.subdir.mk>
index 025ed084e2df9cd0b27dafde28098e569278a882..c4f4ea1c27e83a822fae04020ebafddcd99c7d24 100644 (file)
@@ -1,8 +1,9 @@
+# $NetBSD: Makefile,v 1.2 1996/12/28 18:56:57 tls Exp $
 #      @(#)Makefile    8.1 (Berkeley) 7/24/94
 
 PROG=  gomoku
 SRCS=  bdinit.c bdisp.c main.c makemove.c pickmove.c stoc.c
-MAN6=  gomoku.0
+MAN=   gomoku.6
 DPADD= ${LIBCURSES} ${LIBTERM}
 LDADD= -lcurses -ltermlib
 HIDEGAME=hidegame
index dd3c179917b178eb13d558ef3a28ac83850ce151..f9219fdd8588210b2c9aad58eae74cd9d6722c08 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: bdinit.c,v 1.2 1996/12/28 18:56:58 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)bdinit.c   8.2 (Berkeley) 5/3/95";
+#if 0
+static char sccsid[] = "from: @(#)bdinit.c     8.2 (Berkeley) 5/3/95";
+#else
+static char rcsid[] = "$NetBSD: bdinit.c,v 1.2 1996/12/28 18:56:58 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include <string.h>
index da7dfb4fd53f480db9483f01aae34a6f7e191e3a..bcb62c8e3d684c76a01462eb5b96e0eb35565647 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: bdisp.c,v 1.2 1996/12/28 18:56:59 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
  */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)bdisp.c    8.2 (Berkeley) 5/3/95";
+#else
+static char rcsid[] = "$NetBSD: bdisp.c,v 1.2 1996/12/28 18:56:59 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include "gomoku.h"
index 7888e1cd2d43f2e5362e0999cbeac3073691ce10..c12c6d32f39fdcc232d4a303d6b48580a231b4ba 100644 (file)
@@ -1,3 +1,5 @@
+.\" $NetBSD: gomoku.6,v 1.2 1996/12/28 18:57:00 tls Exp $
+.\"
 .\" Copyright (c) 1994
 .\"    The Regents of the University of California.  All rights reserved.
 .\"
index 173e329f60967cdfa3afc5b23e5cf947c4c1014d..e7c4ed558ec9181ecdbd630ce8634429227a375f 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: gomoku.h,v 1.2 1996/12/28 18:57:01 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
index d6a076c24d92f94d1448599c03816c5b72a64af4..32bd04d4c0668e7abcd5435169531c585ac9045b 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: main.c,v 1.2 1996/12/28 18:57:01 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
@@ -41,7 +43,11 @@ static char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)main.c     8.4 (Berkeley) 5/4/95";
+#else
+static char rcsid[] = "$NetBSD: main.c,v 1.2 1996/12/28 18:57:01 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include <curses.h>
index b67b3e7746b13573f1537f07eb264d964e2763c8..7d6a95e7ec9926ca9c1d94248e1711d475583907 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: makemove.c,v 1.2 1996/12/28 18:57:02 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
  */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)makemove.c 8.2 (Berkeley) 5/3/95";
+#else
+static char rcsid[] = "$NetBSD: makemove.c,v 1.2 1996/12/28 18:57:02 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include "gomoku.h"
index 197d3c5ca5f76f4313a148a0c4a515972b8e6c53..ce5d335ffff9d8339c1eb86edc134c1b1d94f712 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: pickmove.c,v 1.2 1996/12/28 18:57:04 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
  */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)pickmove.c 8.2 (Berkeley) 5/3/95";
+#else
+static char rcsid[] = "$NetBSD: pickmove.c,v 1.2 1996/12/28 18:57:04 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include <stdio.h>
index 636691515904fc2c2d1b201b2b28ec03754ac4e8..71a9dde29cb3047d1bd649d6c8e760600958b1f3 100644 (file)
@@ -1,3 +1,5 @@
+/* $NetBSD: stoc.c,v 1.2 1996/12/28 18:57:05 tls Exp $
+*/
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
  */
 
 #ifndef lint
+#if 0
 static char sccsid[] = "@(#)stoc.c     8.1 (Berkeley) 7/24/94";
+#else
+static char rcsid[] = "$NetBSD: stoc.c,v 1.2 1996/12/28 18:57:05 tls Exp $";
+#endif
 #endif /* not lint */
 
 #include "gomoku.h"