be74d8809a2098b04088f8bebbe2f90ddf017bee
hiram
  Fri May 24 13:33:12 2013 -0700
updating userApps buildlist refs #9149
diff --git src/hg/makeDb/makefile src/hg/makeDb/makefile
index f278298..f5f46c0 100644
--- src/hg/makeDb/makefile
+++ src/hg/makeDb/makefile
@@ -1,75 +1,82 @@
 # Build all directories in makeDb 
 
 include ../../inc/common.mk
 
-# List of directories to build
-USE_DIRS = $(DIRS)
+# List of directories to build for userApps
+UTILS_APPLIST = \
+	hgLoadBed \
+	hgLoadOut \
+	hgGcPercent \
+	hgLoadWiggle \
+	ldHgGene
 
+# List of directories to build of interest only at UCSC
 DIRS = \
 	hgAar \
 	hgAddLiftOverChain \
 	hgBbiDbLink \
 	hgClonePos \
 	hgCountAlign \
 	hgCtgPos \
 	hgDeleteChrom \
 	hgExperiment \
 	hgExtFileCheck \
 	hgFakeAgp \
 	hgFindSpec \
-	hgGcPercent \
 	hgGeneBands \
 	hgGenericMicroarray \
 	hgPar \
 	hgGoldGapGl \
 	hgKgGetText \
 	hgKgMrna \
 	hgKnownMore \
 	hgKnownMore.oo21 \
-	hgLoadBed \
 	hgLoadBlastTab \
 	hgLoadChain \
 	hgLoadChromGraph \
 	hgLoadGenePred \
 	hgLoadItemAttr \
 	hgLoadMaf \
 	hgLoadMafFrames \
 	hgLoadNet \
-	hgLoadOut \
 	hgLoadPsl \
 	hgLoadSeq \
 	hgLoadSample \
 	hgLoadSqlTab \
-	hgLoadWiggle \
 	hgMapMicroarray \
 	hgMedianMicroarray \
 	hgNibSeq \
 	hgPepPred \
 	hgRatioMicroarray \
         hgDropSplitTable \
         hgRenameSplitTable \
 	hgSanger20 \
 	hgSanger22 \
 	hgStanfordMicroarray \
 	hgStsAlias \
 	hgStsMarkers \
 	hgTomRough \
 	hgTpf \
 	hgTraceInfo \
 	hgTrackDb \
 	hgWaba \
-	ldHgGene \
 	hgMrnaRefseq \
 	schema \
 	tfbsConsLoc \
 	tfbsConsSort \
 	outside \
         trackDbRaFormat \
 	trackDbPatch
 
+USE_DIRS = $(DIRS) $(UTILS_APPLIST)
+
 all: $(USE_DIRS:%=%.all)
 %.all:
-	( cd $* && echo $* && $(MAKE) )
+	cd $* && echo $* && $(MAKE)
+
+userApps: $(UTILS_APPLIST:%=%.userApp)
+%.userApp:
+	cd $* && echo $* && $(MAKE)
 
 clean::
 	cd hgTomRough && ${MAKE} clean