src/tracks/makefile 1.14
1.14 2009/03/10 00:34:46 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/tracks/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/tracks/makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -b -B -U 1000000 -r1.13 -r1.14
--- src/tracks/makefile 3 Jul 2005 19:54:47 -0000 1.13
+++ src/tracks/makefile 10 Mar 2009 00:34:46 -0000 1.14
@@ -1,43 +1,43 @@
include ../inc/common.mk
-L = $(MYSQLLIBS)
+L += $(MYSQLLIBS)
MYLIBDIR = ../lib/$(MACHTYPE)
MYLIBS = $(MYLIBDIR)/jkweb.a
A = tracksWS120.exe
O = tracks.o
compile: $O
${CC} $O $(MYLIBS) $(L)
mv ${AOUT} $A
#${STRIP} $A
chmod a+rx $A
my: compile
mv $A ${CGI_BIN}-$(USER)/$A
mgsc: compile
mv $A ${CGI_BIN}-mgsc/$A
alpha: compile
mv $A ${CGI_BIN}/$A
beta: compile
mv $A ${CGI_BIN}-beta/$A
install: compile
${MKDIR} ${DESTDIR}${CGI_BIN}
mv $A ${DESTDIR}${CGI_BIN}/$A
debug: $O
${CC} $O $(MYLIBS) $(L)
mv ${AOUT} $A
clean:
rm -f $O $A
tags:
ctags *.h *.c ../lib/*.c ../inc/*.h ../../lib/*.c ../../inc/*.h