diff --git a/games/atc/Makefile b/games/atc/Makefile index 6009a38f360b..1bc9529ee290 100644 --- a/games/atc/Makefile +++ b/games/atc/Makefile @@ -6,8 +6,8 @@ CFLAGS+=-DBSD -I${.CURDIR} -I. SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \ main.c tunable.c update.c y.tab.h MAN6= atc.6 -DPADD= ${LIBL} ${LIBM} ${LIBCURSES} ${LIBTERMCAP} -LDADD= -ll -lm -lcurses -ltermcap +DPADD= ${LIBL} ${LIBM} ${LIBCURSES} +LDADD= -ll -lm -lcurses GAMES= Game_List Killer crossover default easy game_2 HIDEGAME=hidegame diff --git a/games/battlestar/Makefile b/games/battlestar/Makefile index ea449e9ea70e..28184adea8d9 100644 --- a/games/battlestar/Makefile +++ b/games/battlestar/Makefile @@ -6,8 +6,8 @@ SRCS= battlestar.c com1.c com2.c com3.c com4.c com5.c com6.c com7.c \ init.c cypher.c getcom.c parse.c room.c save.c fly.c misc.c \ globals.c dayfile.c nightfile.c dayobjs.c nightobjs.c words.c MAN6= battlestar.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame #CFLAGS+= -Wall -W diff --git a/games/bs/Makefile b/games/bs/Makefile index c0905c94cd0f..93cfb7e3f778 100644 --- a/games/bs/Makefile +++ b/games/bs/Makefile @@ -2,8 +2,8 @@ PROG= bs MAN6= bs.6 -DPADD= ${LIBNCURSES} ${LIBMYTINFO} -LDADD= -lncurses -lmytinfo +DPADD= ${LIBNCURSES} +LDADD= -lncurses HIDEGAME=hidegame .include diff --git a/games/canfield/canfield/Makefile b/games/canfield/canfield/Makefile index bd361aba247f..6f8a803600bf 100644 --- a/games/canfield/canfield/Makefile +++ b/games/canfield/canfield/Makefile @@ -3,8 +3,8 @@ PROG= canfield MAN6= canfield.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame MLINKS= canfield.6 cfscores.6 diff --git a/games/cribbage/Makefile b/games/cribbage/Makefile index 1265970d065a..b889baf6987b 100644 --- a/games/cribbage/Makefile +++ b/games/cribbage/Makefile @@ -2,8 +2,8 @@ # $FreeBSD$ PROG= cribbage -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c MAN6= cribbage.6 HIDEGAME=hidegame diff --git a/games/grdc/Makefile b/games/grdc/Makefile index dd22a236219c..2faf1de9cb45 100644 --- a/games/grdc/Makefile +++ b/games/grdc/Makefile @@ -2,7 +2,7 @@ PROG= grdc MAN6= grdc.6 -DPADD= ${LIBNCURSES} ${LIBMYTINFO} -LDADD= -lncurses -lmytinfo +DPADD= ${LIBNCURSES} +LDADD= -lncurses .include diff --git a/games/hangman/Makefile b/games/hangman/Makefile index f1254b71728e..873794374921 100644 --- a/games/hangman/Makefile +++ b/games/hangman/Makefile @@ -1,11 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= hangman SRCS= endgame.c extern.c getguess.c getword.c main.c playgame.c \ prdata.c prman.c prword.c setup.c MAN6= hangman.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame .include diff --git a/games/mille/Makefile b/games/mille/Makefile index 92017cf59c9a..2cc96be9b710 100644 --- a/games/mille/Makefile +++ b/games/mille/Makefile @@ -1,10 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= mille SRCS= comp.c end.c extern.c init.c mille.c misc.c move.c print.c \ roll.c save.c types.c varpush.c -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat MAN6= mille.6 HIDEGAME=hidegame diff --git a/games/phantasia/Makefile b/games/phantasia/Makefile index 8478020d3ff1..db7ddcec4de4 100644 --- a/games/phantasia/Makefile +++ b/games/phantasia/Makefile @@ -3,8 +3,8 @@ PROG= phantasia SRCS= main.c fight.c io.c interplayer.c gamesupport.c misc.c phantglobs.c -DPADD= ${LIBM} ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lm -lcurses -ltermcap -lcompat +DPADD= ${LIBM} ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lm -lcurses -lcompat DATAFILES=characs gold lastdead mess monsters motd scoreboard void HIDEGAME=hidegame MAN6= phantasia.6 diff --git a/games/piano/Makefile b/games/piano/Makefile index d3e671f2fbd5..0984138a4a7f 100644 --- a/games/piano/Makefile +++ b/games/piano/Makefile @@ -1,8 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= piano MAN6= piano.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} +LDADD= -lcurses .include diff --git a/games/rain/Makefile b/games/rain/Makefile index 8d438d367936..307c94bff748 100644 --- a/games/rain/Makefile +++ b/games/rain/Makefile @@ -1,8 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= rain MAN6= rain.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} +LDADD= -lcurses .include diff --git a/games/robots/Makefile b/games/robots/Makefile index 6ef8d9c998c9..e168fb213897 100644 --- a/games/robots/Makefile +++ b/games/robots/Makefile @@ -6,8 +6,8 @@ CFLAGS+=-DMAX_PER_UID=5 SRCS= extern.c init_field.c main.c make_level.c move.c move_robs.c \ play_level.c query.c rnd_pos.c score.c flush_in.c MAN6= robots.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame beforeinstall: diff --git a/games/rogue/Makefile b/games/rogue/Makefile index f6f546c26a4d..79356244bde0 100644 --- a/games/rogue/Makefile +++ b/games/rogue/Makefile @@ -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} ${LIBTERMCAP} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} +LDADD= -lcurses HIDEGAME=hidegame MAN6= rogue.6 diff --git a/games/sail/Makefile b/games/sail/Makefile index e73ccc958841..5166451000ed 100644 --- a/games/sail/Makefile +++ b/games/sail/Makefile @@ -6,8 +6,8 @@ SRCS= main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \ dr_main.c dr_1.c dr_2.c dr_3.c dr_4.c dr_5.c lo_main.c \ assorted.c game.c globals.c misc.c parties.c sync.c version.c MAN6= sail.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame beforeinstall: diff --git a/games/worm/Makefile b/games/worm/Makefile index a50c5baa1229..29504029a922 100644 --- a/games/worm/Makefile +++ b/games/worm/Makefile @@ -1,9 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= worm MAN6= worm.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT} -LDADD= -lcurses -ltermcap -lcompat +DPADD= ${LIBCURSES} ${LIBCOMPAT} +LDADD= -lcurses -lcompat HIDEGAME=hidegame .include diff --git a/games/worms/Makefile b/games/worms/Makefile index 2933f95dde60..b6a238911082 100644 --- a/games/worms/Makefile +++ b/games/worms/Makefile @@ -1,8 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= worms MAN6= worms.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} +LDADD= -lcurses .include