]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - atc/Makefile
trailing whitespace
[bsdgames-darwin.git] / atc / Makefile
1 # $NetBSD: Makefile,v 1.30 2011/08/16 10:14:40 christos Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
3
4 .include <bsd.own.mk>
5
6 PROG= atc
7 CPPFLAGS+=-DBSD -I${.CURDIR} -I.
8 SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \
9 main.c tunable.c update.c
10 YHEADER=1
11 MAN= atc.6
12 LDADD= -ll -lm -lcurses -lterminfo
13 DPADD= ${LIBL} ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
14 GAMES= Game_List Killer crossover default easy game_2 \
15 Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \
16 game_4 novice two-corners
17 HIDEGAME=hidegame
18 SETGIDGAME=yes
19 .if ${MKSHARE} != "no"
20 FILES=${GAMES:S@^@${.CURDIR}/games/@g}
21 FILESDIR=/usr/share/games/atc
22 FILESMODE=444
23 .endif
24
25 COPTS.input.c += -Wno-format-nonliteral
26
27 .include <bsd.prog.mk>