0f61d2a45c13480522824975e0eadf5b4adc25ed hiram Thu May 23 16:40:25 2013 -0700 OK to ignore errors on make clean due to missing directories refs #9104 diff --git src/userApps/Makefile src/userApps/Makefile index ba444d1..98f5656 100644 --- src/userApps/Makefile +++ src/userApps/Makefile @@ -1,41 +1,41 @@ # Makefile for userApps project # performs the operations of fetching selected directories from # the kent source tree using 'git' and then building the utilities # in the kent source tree. All build results will be kept locally # in this directory. DESTDIR = ${CURDIR} BINDIR = /bin MACHTYPE = local CGI_BIN = ${DESTDIR}/cgi-bin DOCUMENTROOT = ${DESTDIR}/htdocs SCRIPTS = ${DESTDIR}/scripts SAMTABIXDIR = ${DESTDIR}/samtabix USE_SAMTABIX = 1 USE_SSL = 1 NOSQLTEST = 1 envVars = DESTDIR=${DESTDIR} BINDIR=${BINDIR} MACHTYPE=${MACHTYPE} \ CGI_BIN=${CGI_BIN} DOCUMENTROOT=${DOCUMENTROOT} SCRIPTS=${SCRIPTS} \ SAMTABIXDIR=${SAMTABIXDIR} USE_SAMTABIX=1 USE_SSL=1 NOSQLTEST=1 all: fetchSource libs utils utils: cd kent/src && ${envVars} ${MAKE} userApps cd kent/src/parasol && ${envVars} ${MAKE} ./kent/src/utils/userApps/mkREADME.sh ${DESTDIR}/${BINDIR} ${CURDIR}/kentUtils.Documentation.txt libs: cd samtabix && ${envVars} ${MAKE} cd kent/src && ${envVars} ${MAKE} libs clean: - cd kent/src && ${envVars} ${MAKE} clean + cd kent/src && ${envVars} ${MAKE} -i -k clean fetchSource: ./fetchKentSource.sh @echo -n "size of fetched kent source tree: " @du -hs kent @echo -n "number of files in kent source tree: " @find ./kent -type f | wc -l