diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /games/atc/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'games/atc/Makefile')
-rw-r--r-- | games/atc/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/games/atc/Makefile b/games/atc/Makefile new file mode 100644 index 00000000000..8bf902a6abb --- /dev/null +++ b/games/atc/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.9 1995/03/21 15:03:38 cgd Exp $ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 + +PROG= atc +CFLAGS+=-DBSD -I${.CURDIR} -I. +SRCS= extern.c grammar.c graphics.c input.c lex.c list.c log.c \ + main.c tunable.c update.c +MAN= atc.6 +LDADD= -ll -lm -lcurses -ltermcap +DPADD= ${LIBL} ${LIBM} ${LIBTERM} ${LIBCURSES} +GAMES= ATC_scores Game_List Killer crossover default easy game_2 \ + Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \ + game_4 novice two-corners +CLEANFILES=grammar.c y.tab.h lex.c +HIDEGAME=hidegame + +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) + +.include <bsd.prog.mk> |