src/hg/visiGene/hgVisiGene/makefile 1.24
1.24 2009/03/10 00:34:39 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/visiGene/hgVisiGene/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/visiGene/hgVisiGene/makefile,v
retrieving revision 1.23
retrieving revision 1.24
diff -b -B -U 1000000 -r1.23 -r1.24
--- src/hg/visiGene/hgVisiGene/makefile 8 May 2008 18:59:17 -0000 1.23
+++ src/hg/visiGene/hgVisiGene/makefile 10 Mar 2009 00:34:39 -0000 1.24
@@ -1,31 +1,31 @@
include ../../../inc/common.mk
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
MYLIBDIR = ../../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
A = hgVisiGene
O = hgVisiGene.o captionElement.o configPage.o printCaption.o probePage.o visiSearch.o
include ../../../inc/cgi_build_rules.mk
# be sure to make clean after changing this:
XINC=-DVISIGENE='"visiGene"'
compile: $O
${CC} $O ${MYLIBS} ${L}
mv ${AOUT} $A${EXE}
html: bigImage.html
cp bigImage.html /usr/local/apache/htdocs/
htmltest: bigImage.html
cp bigImage.html /usr/local/apache/htdocs/bigImageTest.html
gif:
cp dot_clear.gif /usr/local/apache/htdocs/images/
testVisiSearch: visiSearch.o testVisiSearch.o
${CC} -o testVisiSearch visiSearch.o testVisiSearch.o ${MYLIBS} ${L}