src/hg/hgApi/makefile 1.1

1.1 2010/05/21 20:26:48 larrym
support a JSON based API to the browser
Index: src/hg/hgApi/makefile
===================================================================
RCS file: src/hg/hgApi/makefile
diff -N src/hg/hgApi/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/hgApi/makefile	21 May 2010 20:26:48 -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 = hgApi
+
+O = $A.o
+
+include ../../inc/cgi_build_rules.mk
+
+compile: $O
+	${CC} -o $A $O ${MYLIBS} ${L}