1993-08-01 09:37:30 +04:00
|
|
|
# from: @(#)Makefile 5.7 (Berkeley) 6/27/90
|
1993-12-02 21:18:02 +03:00
|
|
|
# $Id: Makefile,v 1.5 1993/12/02 18:18:02 jtc Exp $
|
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
|
|
|
|
MAN6= atc.0
|
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}
|
1993-03-21 12:45:37 +03:00
|
|
|
GAMES= ATC_scores Game_List Killer crossover default easy game_2
|
|
|
|
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
|
1993-03-21 12:45:37 +03:00
|
|
|
(cd ${.CURDIR}/games; install -c -o ${BINOWN} -g ${BINGRP} -m 400 \
|
|
|
|
${GAMES} ${DESTDIR}/usr/share/games/atc)
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|