-# $OpenBSD: Makefile,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $
+# $OpenBSD: Makefile,v 1.2 1996/12/20 00:22:18 downsj Exp $
# @(#)Makefile 8.1 (Berkeley) 7/24/94
PROG= gomoku
SRCS= bdinit.c bdisp.c main.c makemove.c pickmove.c stoc.c
MAN= gomoku.6
-DPADD= ${LIBOCURSES} ${LIBTERMCAP}
-LDADD= -locurses -ltermcap
+DPADD= ${LIBCURSES} ${LIBTERMLIB}
+LDADD= -lcurses -ltermlib
HIDEGAME=hidegame
.include <bsd.prog.mk>
-/* $OpenBSD: bdisp.c,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $ */
+/* $OpenBSD: bdisp.c,v 1.2 1996/12/20 00:22:19 downsj Exp $ */
/*
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
#include "gomoku.h"
#include <stdio.h>
-#include <ocurses.h>
+#include <curses.h>
#define SCRNH 24 /* assume 24 lines for the moment */
#define SCRNW 80 /* assume 80 chars for the moment */
-/* $OpenBSD: main.c,v 1.2 1996/12/19 22:21:28 deraadt Exp $ */
+/* $OpenBSD: main.c,v 1.3 1996/12/20 00:22:21 downsj Exp $ */
/*
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
#endif /* not lint */
-#include <ocurses.h>
+#include <curses.h>
#include <err.h>
#include <signal.h>
#include <stdio.h>
-/* $OpenBSD: pickmove.c,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $ */
+/* $OpenBSD: pickmove.c,v 1.2 1996/12/20 00:22:23 downsj Exp $ */
/*
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
#endif /* not lint */
#include <stdio.h>
-#include <ocurses.h>
+#include <curses.h>
#include <machine/limits.h>
#include "gomoku.h"