src/utils/userApps/makefile 1.4
1.4 2009/10/07 17:49:35 galt
qa does not want this doc file anymore on hgdownload
Index: src/utils/userApps/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/userApps/makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/utils/userApps/makefile 26 Mar 2009 23:20:38 -0000 1.3
+++ src/utils/userApps/makefile 7 Oct 2009 17:49:35 -0000 1.4
@@ -1,23 +1,23 @@
include ../../inc/common.mk
CMD_LIST = fetchChromSizes
-DOC_LIST = bigBedWigs.txt
+DOC_LIST =
all::
@${MKDIR} "${DESTDIR}${BINDIR}"
@for P in ${CMD_LIST}; do \
( rm -f "${DESTDIR}${BINDIR}/$${P}" && \
cp -p $${P} "${DESTDIR}${BINDIR}" && \
chmod +x "${DESTDIR}${BINDIR}/$${P}" && \
echo "installed ${DESTDIR}${BINDIR}/$${P}" ) ; \
done
@for P in ${DOC_LIST}; do \
( rm -f "${DESTDIR}${BINDIR}/$${P}" && \
cp -p $${P} "${DESTDIR}${BINDIR}" && \
echo "installed ${DESTDIR}${BINDIR}/$${P}" ) ; \
done
clean::
@echo "nothing to clean in userApps"
# "$Id$"