src/utils/wigToBed/makefile 1.1

1.1 2010/06/04 21:32:17 kent
Seems to work.
Index: src/utils/wigToBed/makefile
===================================================================
RCS file: src/utils/wigToBed/makefile
diff -N src/utils/wigToBed/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/utils/wigToBed/makefile	4 Jun 2010 21:32:17 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = wigToBed
+O = wigToBed.o
+
+wigToBed: ${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}