src/utils/faCount/makefile 1.6
1.6 2009/04/03 23:26:04 hiram
add the mkdir business
Index: src/utils/faCount/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/faCount/makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 1000000 -r1.5 -r1.6
--- src/utils/faCount/makefile 30 Mar 2009 17:31:39 -0000 1.5
+++ src/utils/faCount/makefile 3 Apr 2009 23:26:04 -0000 1.6
@@ -1,18 +1,19 @@
include ../../inc/common.mk
L += -lm
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
A = faCount
O = faCount.o
faCount: ${O}
+ @${MKDIR} "${DESTDIR}${BINDIR}"
${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
compile:: ${O}
${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
clean::
rm -f ${A} ${O}