]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - gomoku/Makefile
cgram: don't beep if the window is resized
[bsdgames-darwin.git] / gomoku / Makefile
index cc8b8d06203aeb8365760801586d127d6d8ea5a3..7c1479f6820a5bd5e0abb0cf5815d8af7f87a68f 100644 (file)
@@ -1,11 +1,21 @@
-#      $NetBSD: Makefile,v 1.3 1997/01/03 01:35:23 cgd Exp $
+#      $NetBSD: Makefile,v 1.5 2010/02/06 23:45:25 he 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= ${LIBCURSES} ${LIBTERM}
-LDADD= -lcurses -ltermlib
-HIDEGAME=hidegame
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install