]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - quiz/Makefile
Fix merge conflicts
[bsdgames-darwin.git] / quiz / Makefile
index 807ac4feaf201ba13118139a9abc5e232c1684b7..54e1547da243f23e83e0a77b9f02e9e5c3f0695b 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.11 1997/03/24 22:15:48 christos Exp $
+#      $NetBSD: Makefile,v 1.13 1999/02/13 02:54:22 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  quiz
@@ -8,8 +8,22 @@ CATS=  africa america areas arith asia babies bard chinese collectives \
        ed elements europe flowers greek inca index latin locomotive \
        midearth morse mult murders poetry posneg pres province seq-easy \
        seq-hard sexes sov spell state trek ucc
-HIDEGAME=hidegame
-FILES= ${CATS:S@^@${.CURDIR}/datfiles/@}
-FILESDIR=/usr/share/games/quiz.db
+FILES= $(addprefix datfiles/,$(CATS))
+FILESDIR=$(PREFIX)/share/games/quiz.db
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I$(ROOT)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
+       $(GINSTALL) -d $(DESTDIR)$(FILESDIR)
+       $(GINSTALL) -Dm644 $(FILES) $(DESTDIR)$(FILESDIR)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install