about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-06-19 00:48:33 +0100
committerJames Booth <boothj5@gmail.com>2012-06-19 00:48:33 +0100
commit50d02eebd4466b3f103a024475b74bd5e1f68085 (patch)
treec34dc2c41a1e35d1e918eaff183851703869e169 /Makefile
parent69e7579aeca47cfb9aaf0224a092cfe1dae3611c (diff)
downloadprofani-tty-50d02eebd4466b3f103a024475b74bd5e1f68085.tar.gz
Removed dependency on libcrypto
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 335752b8..9a8f0065 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 CC = gcc
 WARNS = -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-but-set-variable \
 	-Wno-unused-result
-LIBS = -lncurses -L ~/lib -lstrophe -lxml2 -lexpat -lssl -lresolv -lcrypto `pkg-config --libs glib-2.0`
+LIBS = -lncurses -L ~/lib -lstrophe -lxml2 -lexpat -lssl -lresolv `pkg-config --libs glib-2.0`
 TESTLIB = -L ~/lib -l headunit `pkg-config --libs glib-2.0`
 CPPLIB = -lstdc++
 CFLAGS = -I ~/include -O3 $(WARNS) $(LIBS) `pkg-config --cflags glib-2.0`