src/hg/instinct/bioInt2/makefile 1.2
1.2 2009/03/21 19:54:10 jsanborn
added routine to set cohorts
Index: src/hg/instinct/bioInt2/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/bioInt2/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/instinct/bioInt2/makefile 20 Mar 2009 06:06:32 -0000 1.1
+++ src/hg/instinct/bioInt2/makefile 21 Mar 2009 19:54:10 -0000 1.2
@@ -1,36 +1,43 @@
include ../../../inc/common.mk
L += $(MYSQLLIBS) -lm
MYLIBDIR = ../../../lib/${MACHTYPE}
MYLIBS = $(MYLIBDIR)/jkhmap.a $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a
A1 = bioIntegrator
O1 = bioIntegrator.o bioIntDriver.o bioIntDb.o
H1 = bioIntDriver.h bioIntDb.h
A2 = populateDb
O2 = populateDb.o bioIntDb.o
H2 = bioIntDb.h
A3 = bioController
O3 = bioController.o bioIntDriver.o bioIntDb.o bioGeneLevel.o
H3 = bioIntDriver.h bioIntDb.h
+A4 = setCohorts
+O4 = setCohorts.o bioIntDb.o
+H4 = bioIntDb.h
-all: ${A1} ${A2} ${A3}
+all: ${A1} ${A2} ${A3} ${A4}
bioIntegrator: ${O1} ${H1}
${CC} ${COPT} ${O1} ${MYLIBS} ${L}
mv ${AOUT} ${A1}${EXE}
populateDb: ${O2} ${H2} ${MYLIBS}
${CC} ${COPT} ${O2} ${MYLIBS} ${L}
mv ${AOUT} ${A2}${EXE}
bioController: ${O3} ${H3}
${CC} ${COPT} ${O3} ${MYLIBS} ${L}
mv ${AOUT} ${A3}${EXE}
+setCohorts: ${O4} ${H4}
+ ${CC} ${COPT} ${O4} ${MYLIBS} ${L}
+ mv ${AOUT} ${A4}${EXE}
+
clean:
rm -f ${O1} ${O2}