src/hg/instinct/bioInt2/makefile 1.1
1.1 2009/03/20 06:06:32 jsanborn
initial commit
Index: src/hg/instinct/bioInt2/makefile
===================================================================
RCS file: src/hg/instinct/bioInt2/makefile
diff -N src/hg/instinct/bioInt2/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/instinct/bioInt2/makefile 20 Mar 2009 06:06:32 -0000 1.1
@@ -0,0 +1,36 @@
+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
+
+
+all: ${A1} ${A2} ${A3}
+
+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}
+
+clean:
+ rm -f ${O1} ${O2}
+