386BSD 0.1 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Mon, 13 Jul 1992 11:00:17 +0000 (03:00 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Mon, 13 Jul 1992 11:00:17 +0000 (03:00 -0800)
Work on file usr/othersrc/games/rogue/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

usr/othersrc/games/rogue/Makefile [new file with mode: 0644]

diff --git a/usr/othersrc/games/rogue/Makefile b/usr/othersrc/games/rogue/Makefile
new file mode 100644 (file)
index 0000000..312a611
--- /dev/null
@@ -0,0 +1,13 @@
+#      @(#)Makefile    5.7 (Berkeley) 5/11/90
+
+PROG=  rogue
+CFLAGS+=-DUNIX -DUNIX_BSD4_2 -fwritable-strings
+SRCS=  curses.c 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}
+LDADD= -lcurses -ltermlib
+HIDEGAME=hidegame
+MAN6=  rogue.0
+
+.include <bsd.prog.mk>