src/hg/instinct/raToDb/makefile 1.1
1.1 2010/04/09 18:51:51 jsanborn
initial commit
Index: src/hg/instinct/raToDb/makefile
===================================================================
RCS file: src/hg/instinct/raToDb/makefile
diff -N src/hg/instinct/raToDb/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/instinct/raToDb/makefile 9 Apr 2010 18:51:51 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += $(MYSQLLIBS) -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS = $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a
+
+A = raToDb
+O = raToDb.o ra.o
+
+raToDb: ${O} ${MYLIBS}
+ ${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
+ ${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
+
+compile:: ${O}
+ ${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
+
+clean::
+ rm -f ${A}${EXE} ${O}