summaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:47:12 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-14 06:47:12 +0000
commitedd3142d1f35d92347e432094f853235337de140 (patch)
tree5937cf78797374afb84ef755c22bebd781b1d1a2 /GNUmakefile
parent097b96ea44d5a09ac1f3553f1789ef6e932a9eba (diff)
Don't need ncurses, use curses.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index c2e91603..aaa57f55 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile,v 1.108 2009-07-06 18:21:17 nicm Exp $
+# $Id: GNUmakefile,v 1.109 2009-07-14 06:47:12 nicm Exp $
.PHONY: clean
@@ -9,7 +9,7 @@ FDEBUG= 1
CC?= gcc
CFLAGS+= -DBUILD="\"$(VERSION)\""
LDFLAGS+= -L/usr/local/lib
-LIBS+= -lncurses
+LIBS+= -lcurses
# This sort of sucks but gets rid of the stupid warning and should work on
# most platforms...