src/hg/hgBlatTest/makefile 1.5

1.5 2009/03/10 00:33:57 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/hgBlatTest/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgBlatTest/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/hg/hgBlatTest/makefile	19 Dec 2006 23:35:03 -0000	1.4
+++ src/hg/hgBlatTest/makefile	10 Mar 2009 00:33:57 -0000	1.5
@@ -1,32 +1,32 @@
 include ../../inc/common.mk
 
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 O = hgBlatTest.o
 
 hgBlatTest: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/hgBlatTest $O ${MYLIBS} $L
 #	${STRIP} ${BINDIR}/hgBlatTest${EXE}
 
 test:
 	hgBlatTest hgwdev-${USER}.cse.ucsc.edu/cgi-bin/hgBlat test.log org=human db=hg16 type=DNA sort=score output=psl repeat=1 
 
 test2:
 	hgBlatTest hgwbeta.cse.ucsc.edu/cgi-bin/hgBlat test.log org=chimp type=DNA sort=score output=psl repeat=1 
 
 test3:
 	hgBlatTest hgwdev.cse.ucsc.edu/cgi-bin/hgBlat test.log type=DNA sort=score output=psl repeat=1 
 
 backup: clean
 	date +%Y-%m-%d-%H-%M | gawk '{printf("zip hgBlatTest%s.zip *\n",$$1);}' > tempX
 	chmod 755 tempX
 	./tempX
 	rm tempX 
 	scp *.zip screech:/scratch/backups/
 	rm *.zip
 
 clean:
 	rm -f $O
 	rm -f *.log