30 lines
1.0 KiB
Makefile
30 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.10 1996/10/18 02:43:36 thorpej 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>
|