e5f1cb521f39298a094e60c0b59210f059bfed0b
hiram
  Tue Mar 8 15:18:47 2011 -0800
properly clean the executable
diff --git src/utils/bigWigToBedGraph/makefile src/utils/bigWigToBedGraph/makefile
index 565c3be..1e18523 100644
--- src/utils/bigWigToBedGraph/makefile
+++ src/utils/bigWigToBedGraph/makefile
@@ -4,16 +4,16 @@
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS = ${MYLIBDIR}/jkweb.a
 
 A = bigWigToBedGraph
 O = bigWigToBedGraph.o
 
 bigWigToBedGraph: ${O} ${MYLIBS}
 	@${MKDIR} "${DESTDIR}${BINDIR}"
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O} ${MYLIBS}
 	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
 
 clean::
-	rm -f ${O}
+	rm -f ${O} ${A}${EXE}