summaryrefslogtreecommitdiffstats
path: root/atc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'atc/Makefile')
-rw-r--r--atc/Makefile39
1 files changed, 22 insertions, 17 deletions
diff --git a/atc/Makefile b/atc/Makefile
index 8c4e9963..22216a34 100644
--- a/atc/Makefile
+++ b/atc/Makefile
@@ -1,27 +1,32 @@
# $NetBSD: Makefile,v 1.30 2011/08/16 10:14:40 christos Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-.include <bsd.own.mk>
-
PROG= atc
-CPPFLAGS+=-DBSD -I${.CURDIR} -I.
-SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \
+SRCS= extern.c graphics.c input.c list.c log.c \
main.c tunable.c update.c
-YHEADER=1
MAN= atc.6
-LDADD= -ll -lm -lcurses -lterminfo
-DPADD= ${LIBL} ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
-GAMES= Game_List Killer crossover default easy game_2 \
- Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \
- game_4 novice two-corners
-HIDEGAME=hidegame
-SETGIDGAME=yes
-.if ${MKSHARE} != "no"
FILES=${GAMES:S@^@${.CURDIR}/games/@g}
FILESDIR=/usr/share/games/atc
-FILESMODE=444
-.endif
+FILESMODE=644
+
+all: $(PROG)
+
+$(PROG): $(SRCS) grammar.y lex.l
+ yacc -d grammar.y -o grammar.c
+ lex lex.l
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) grammar.c lex.yy.c -lncursesw $(LIBFLA)
+ $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+ $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
+ $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+ mkdir -p $(DESTDIR)/usr/share/games
+ cp -r games $(DESTDIR)/usr/share/games/atc
+ chmod -R 644 $(DESTDIR)/usr/share/games/atc/*
+ mkdir -p $(DESTDIR)/var/games/
+
-COPTS.input.c += -Wno-format-nonliteral
+clean:
+ rm -f $(CLEANFILES) $(PROG) grammar.c grammar.h lex.yy.c
-.include <bsd.prog.mk>
+.PHONY: all clean install