]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/Makefile
Simplify syncing with upstream
[bsdgames-darwin.git] / atc / Makefile
index 1917bfffb6e2177d69e6d8a1787c88ae1de842d1..437fdc54274a2da1c31fb7c52d4da712d0d59f3c 100644 (file)
@@ -1,25 +1,32 @@
-#      $NetBSD: Makefile,v 1.28 2009/10/29 14:27:26 christos Exp $
+#      $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
-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
-HIDEGAME=hidegame
-SETGIDGAME=yes
-.if ${MKSHARE} != "no"
 FILES=${GAMES:S@^@${.CURDIR}/games/@g}
-FILESDIR=/usr/share/games/atc
-FILESMODE=444
-.endif
+FILESDIR=$(PREFIX)/share/games/atc
+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) -I$(ROOT)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
+       mkdir -p $(DESTDIR)/$(PREFIX)/share/games
+       cp -r games $(DESTDIR)/$(PREFIX)/share/games/atc
+       chmod -R 644 $(DESTDIR)/$(PREFIX)/share/games/atc/*
+       mkdir -p $(DESTDIR)/$(LOCALSTATEDIR)/games/
+
+
+clean:
+       rm -f $(CLEANFILES) $(PROG) grammar.c grammar.h lex.yy.c
 
-.include <bsd.prog.mk>
+.PHONY: all clean install