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 4 -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
@@ -15,10 +15,13 @@
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}
@@ -30,7 +33,11 @@
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}