src/utils/bedClip/makefile 1.1

1.1 2009/09/10 02:22:28 kent
The bedClip utility seems to work.
Index: src/utils/bedClip/makefile
===================================================================
RCS file: src/utils/bedClip/makefile
diff -N src/utils/bedClip/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/utils/bedClip/makefile	10 Sep 2009 02:22:28 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = bedClip
+O = bedClip.o
+
+bedClip: ${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}