src/gfClient/makefile 1.18
1.18 2009/03/10 00:33:39 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/gfClient/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/gfClient/makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -b -B -U 1000000 -r1.17 -r1.18
--- src/gfClient/makefile 19 Dec 2006 23:34:56 -0000 1.17
+++ src/gfClient/makefile 10 Mar 2009 00:33:39 -0000 1.18
@@ -1,12 +1,12 @@
include ../inc/common.mk
-L = -lm $(SOCKETLIB)
+L += -lm $(SOCKETLIB)
MYLIBDIR = ../lib/$(MACHTYPE)
MYLIBS = $(MYLIBDIR)/jkOwnLib.a $(MYLIBDIR)/jkweb.a
O = gfClient.o
X = gfClient
gfClient: $O $(MYLIBS)
${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
${STRIP} ${BINDIR}/$X${EXE}