blob: 012bc1615696f0553762268bbc39aa9799bc56c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: Makefile,v 1.16 2015/11/25 23:18:11 deraadt Exp $
PROG= atc
CFLAGS+=-I${.CURDIR} -I.
SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \
main.c update.c
MAN= atc.6
LDADD= -ll -lm -lcurses
DPADD= ${LIBL} ${LIBM} ${LIBCURSES}
GAMES= Game_List Killer crossover default easy game_2 \
Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \
game_4 novice two-corners
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} ${INSTALL_COPY} \
-o ${BINOWN} -g ${BINGRP} \
-m 444 ${GAMES} ${DESTDIR}/usr/share/games/atc)
.include <bsd.prog.mk>
|