]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - rogue/Makefile
cgram: in hinting mode, show all correct characters in bold face
[bsdgames-darwin.git] / rogue / Makefile
index 75782202c03accda631f522fc58ca804ade819c7..a1c8d834533c19e926320cde5b7a60107913428d 100644 (file)
@@ -1,14 +1,25 @@
-#      $NetBSD: Makefile,v 1.6 1995/04/22 10:27:25 cgd Exp $
+#      $NetBSD: Makefile,v 1.21 2019/10/13 07:28:09 mrg Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  rogue
-CFLAGS+=-DUNIX -fwritable-strings
-SRCS=  curses.c hit.c init.c inventory.c level.c machdep.c main.c \
+CPPFLAGS+=-DUNIX
+SRCS=  hit.c init.c inventory.c level.c machdep.c main.c \
        message.c monster.c move.c object.c pack.c play.c random.c ring.c \
        room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c
-DPADD= ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
-LDADD= -lcurses -ltermlib -lcompat
-HIDEGAME=hidegame
 MAN=   rogue.6
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw -I$(ROOT)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
+       $(GINSTALL) -d $(DESTDIR)/$(LOCALSTATEDIR)/games
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install