src/hg/oneShot/testCart/makefile 1.9
1.9 2009/03/10 00:34:24 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/oneShot/testCart/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/oneShot/testCart/makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/hg/oneShot/testCart/makefile 18 Aug 2004 00:15:17 -0000 1.8
+++ src/hg/oneShot/testCart/makefile 10 Mar 2009 00:34:24 -0000 1.9
@@ -1,12 +1,12 @@
include ../../../inc/common.mk
-L = -lm $(MYSQLLIBS)
+L += -lm $(MYSQLLIBS)
MYLIBDIR = $(HOME)/src/lib/$(MACHTYPE)
MYLIBS = $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
O = testCart.o cart.o
testCart: $O $(MYLIBS)
${CC} ${COPT} ${CFLAGS} -o testCart $O $(MYLIBS) $L
${STRIP} testCart${EXE}
mv testCart /usr/local/apache/cgi-bin/testCart