]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/Makefile
use more suitable types
[bsdgames-darwin.git] / atc / Makefile
index 722568974f9f204ea8ceccaa80d0bb2d09334ad0..8c4e9963bf46426090679336ed9225b58a6c13ab 100644 (file)
@@ -1,27 +1,27 @@
-#      from: @(#)Makefile      5.7 (Berkeley) 6/27/90
-#      $Id: Makefile,v 1.6 1994/12/22 09:32:47 cgd Exp $
+#      $NetBSD: Makefile,v 1.30 2011/08/16 10:14:40 christos Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
+
+.include <bsd.own.mk>
 
 PROG=  atc
-CFLAGS+=-DBSD -I${.CURDIR} -I.
-SRCS=  extern.c grammar.c graphics.c input.c lex.c list.c log.c \
+CPPFLAGS+=-DBSD -I${.CURDIR} -I.
+SRCS=  extern.c grammar.y graphics.c input.c lex.l list.c log.c \
        main.c tunable.c update.c
+YHEADER=1
 MAN=   atc.6
-LDADD= -ll -lm -lcurses -ltermcap
-DPADD= ${LIBL} ${LIBM} ${LIBTERM} ${LIBCURSES}
-GAMES= ATC_scores Game_List Killer crossover default easy game_2
-CLEANFILES=grammar.c y.tab.h lex.c
+LDADD= -ll -lm -lcurses -lterminfo
+DPADD= ${LIBL} ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
+GAMES= Game_List Killer crossover default easy game_2 \
+       Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \
+       game_4 novice two-corners
 HIDEGAME=hidegame
+SETGIDGAME=yes
+.if ${MKSHARE} != "no"
+FILES=${GAMES:S@^@${.CURDIR}/games/@g}
+FILESDIR=/usr/share/games/atc
+FILESMODE=444
+.endif
 
-beforeinstall: 
-       @if [ ! -d ${DESTDIR}/usr/share/games/atc ]; then \
-                /bin/rm -f ${DESTDIR}/usr/share/games/atc ; \
-                mkdir -p ${DESTDIR}/usr/share/games/atc ; \
-                chown root.wheel ${DESTDIR}/usr/share/games/atc ; \
-                chmod 755 ${DESTDIR}/usr/share/games/atc ; \
-        else \
-                true ; \
-        fi
-       (cd ${.CURDIR}/games; install -c -o ${BINOWN} -g ${BINGRP} -m 400 \
-           ${GAMES} ${DESTDIR}/usr/share/games/atc)
+COPTS.input.c += -Wno-format-nonliteral
 
 .include <bsd.prog.mk>