58426dc61940e28010f76b6ad9a59c22d4b6fae2 hiram Thu May 23 16:13:23 2013 -0700 adding parasol to the userApps build refs #9104 diff --git src/userApps/Makefile src/userApps/Makefile index 1ada5ef..f3e0b5d 100644 --- src/userApps/Makefile +++ src/userApps/Makefile @@ -1,39 +1,40 @@ # 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} libs: cd samtabix && ${envVars} ${MAKE} cd kent/src && ${envVars} ${MAKE} libs clean: cd kent/src && ${envVars} ${MAKE} 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