src/hg/oneShot/roundNewViewLimitsInRa/makefile 1.1

1.1 2009/11/25 17:31:08 kent
Seems to work.
Index: src/hg/oneShot/roundNewViewLimitsInRa/makefile
===================================================================
RCS file: src/hg/oneShot/roundNewViewLimitsInRa/makefile
diff -N src/hg/oneShot/roundNewViewLimitsInRa/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/oneShot/roundNewViewLimitsInRa/makefile	25 Nov 2009 17:31:08 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = roundNewViewLimitsInRa
+O = roundNewViewLimitsInRa.o
+
+roundNewViewLimitsInRa: ${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} ${O}