src/hg/zfishBacClonesandSts/makefile 1.4
1.4 2009/03/10 00:34:40 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/zfishBacClonesandSts/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/zfishBacClonesandSts/makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/hg/zfishBacClonesandSts/makefile 19 Dec 2006 23:35:29 -0000 1.3
+++ src/hg/zfishBacClonesandSts/makefile 10 Mar 2009 00:34:40 -0000 1.4
@@ -1,30 +1,30 @@
include ../../inc/common.mk
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
#COPT=-ggdb
A = zfishBacClonesandSts
O = $A.o
compile: $O
${CC} ${COPT} ${CFLAGS} $O ${MYLIBS} ${L}
mv ${AOUT} $A${EXE}
${STRIP} $A${EXE}
chmod a+rx $A
cp $A ${BINDIR}
debug: $O
${CC} ${COPT} ${CFLAGS} $O ${MYLIBS} ${L}
mv ${AOUT} $A${EXE}
lib:
cd ../../lib && ${MAKE}
tags:
ctags *.c ../lib/*.c ../inc/*.h ../../lib/*.c ../../inc/*.h
clean::
rm -f zfishBacClonesandSts ${O}