e5f1cb521f39298a094e60c0b59210f059bfed0b hiram Tue Mar 8 15:18:47 2011 -0800 properly clean the executable diff --git src/utils/bigWigSummary/makefile src/utils/bigWigSummary/makefile index 437be4b..bcdf35b 100644 --- src/utils/bigWigSummary/makefile +++ src/utils/bigWigSummary/makefile @@ -1,19 +1,19 @@ include ../../inc/common.mk L += ${SOCKETLIB} -lm -lz MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkweb.a A = bigWigSummary O = bigWigSummary.o bigWigSummary: ${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}