src/hg/hgSuggest/makefile 1.1

1.1 2010/02/09 08:41:02 larrym
support gene auto-complete
Index: src/hg/hgSuggest/makefile
===================================================================
RCS file: src/hg/hgSuggest/makefile
diff -N src/hg/hgSuggest/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/hgSuggest/makefile	9 Feb 2010 08:41:02 -0000	1.1
@@ -0,0 +1,14 @@
+include ../../inc/common.mk
+
+L += ${MYSQLLIBS} -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
+
+A = hgSuggest
+
+O = $A.o
+
+include ../../inc/cgi_build_rules.mk
+
+compile: $O
+	${CC} -o $A $O ${MYLIBS} ${L}