summaryrefslogtreecommitdiffstats
path: root/rogue/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rogue/Makefile')
-rw-r--r--rogue/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/rogue/Makefile b/rogue/Makefile
new file mode 100644
index 00000000..312a6115
--- /dev/null
+++ b/rogue/Makefile
@@ -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>