1996-10-18 06:37:51 +04:00
|
|
|
# $NetBSD: Makefile,v 1.10 1996/10/18 02:43:36 thorpej Exp $
|
1995-03-21 18:03:38 +03:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
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
|
1994-12-25 15:38:41 +03:00
|
|
|
MAN= atc.6
|
1993-03-23 05:44:38 +03:00
|
|
|
LDADD= -ll -lm -lcurses -ltermcap
|
1993-12-02 21:18:02 +03:00
|
|
|
DPADD= ${LIBL} ${LIBM} ${LIBTERM} ${LIBCURSES}
|
1994-12-23 10:01:39 +03:00
|
|
|
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
|
1993-03-21 12:45:37 +03:00
|
|
|
CLEANFILES=grammar.c y.tab.h lex.c
|
|
|
|
HIDEGAME=hidegame
|
|
|
|
|
|
|
|
beforeinstall:
|
1993-04-09 13:35:33 +04:00
|
|
|
@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
|
1996-10-18 06:37:51 +04:00
|
|
|
(cd ${.CURDIR}/games; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 400 \
|
1993-03-21 12:45:37 +03:00
|
|
|
${GAMES} ${DESTDIR}/usr/share/games/atc)
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|