diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /games/rogue/Makefile | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'games/rogue/Makefile')
-rw-r--r-- | games/rogue/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/rogue/Makefile b/games/rogue/Makefile index 01ffdc8e588..36a1f52fcd3 100644 --- a/games/rogue/Makefile +++ b/games/rogue/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1997/09/21 11:36:56 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1998/07/24 00:10:40 millert Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= rogue @@ -6,8 +6,8 @@ CFLAGS+=-DUNIX -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} ${LIBTERMLIB} ${LIBCOMPAT} -LDADD= -lcurses -ltermlib -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame MAN= rogue.6 |