src/utils/faCount/makefile 1.5
1.5 2009/03/30 17:31:39 hiram
forgot dependency on the $O for the compile target
Index: src/utils/faCount/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/faCount/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/faCount/makefile 30 Mar 2009 17:30:25 -0000 1.4
+++ src/utils/faCount/makefile 30 Mar 2009 17:31:39 -0000 1.5
@@ -1,18 +1,18 @@
include ../../inc/common.mk
L += -lm
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
A = faCount
O = faCount.o
faCount: ${O}
${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
-compile::
+compile:: ${O}
${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
clean::
rm -f ${A} ${O}