diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-31 10:45:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-31 10:45:22 +0000 |
commit | ec8930c1447f0fd0303ba16b636deb8a8d175252 (patch) | |
tree | 33fca5ad4b503662c6bdf2f644abb70f2c20dafe | |
parent | 3e46bcec936e97741c94856f5394acb7fdb5fcd0 (diff) | |
download | rtmux-ec8930c1447f0fd0303ba16b636deb8a8d175252.tar.gz rtmux-ec8930c1447f0fd0303ba16b636deb8a8d175252.tar.bz2 rtmux-ec8930c1447f0fd0303ba16b636deb8a8d175252.zip |
Part of last commit, remove -lcurses.
-rw-r--r-- | GNUmakefile | 4 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index b5ad3032..6e2773ab 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile,v 1.111 2009-07-21 13:51:30 nicm Exp $ +# $Id: GNUmakefile,v 1.112 2009-07-31 10:45:22 nicm Exp $ .PHONY: clean @@ -9,7 +9,7 @@ FDEBUG= 1 CC?= gcc CFLAGS+= -DBUILD="\"$(VERSION)\"" LDFLAGS+= -L/usr/local/lib -LIBS+= -lcurses +LIBS+= ifdef FDEBUG CFLAGS+= -g -ggdb -DDEBUG @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.146 2009-07-21 13:51:30 nicm Exp $ +# $Id: Makefile,v 1.147 2009-07-31 10:45:22 nicm Exp $ .SUFFIXES: .c .o .PHONY: clean @@ -10,7 +10,7 @@ FDEBUG= 1 CC?= cc CFLAGS+= -DBUILD="\"$(VERSION)\"" LDFLAGS+= -L/usr/local/lib -LIBS+= -lcurses +LIBS+= .ifdef FDEBUG CFLAGS+= -g -ggdb -DDEBUG |