232074610513870c470c1263d3c46ff9b4ac3450
hiram
  Tue Apr 2 17:22:55 2013 -0700
minimal makefiles now in place for kentUtils build refs #9104
diff --git src/hg/geneBounds/makefile src/hg/geneBounds/makefile
index 877b0e5..9c2f5fa 100644
--- src/hg/geneBounds/makefile
+++ src/hg/geneBounds/makefile
@@ -1,50 +1,51 @@
 include ../../inc/common.mk
 # Build all directories in makeDb 
 
 # List of directories to build
 USE_DIRS = $(DIRS)
 
 DIRS = \
 	assessLibs \
 	averagExp \
 	axtForEst \
 	bedCons \
 	checkableBorf \
 	clusterGenes \
 	clusterPsl \
 	clusterRna \
 	dnaMotifFind \
 	eisenInput \
 	emblMatrixToMotif \
 	estLibStats \
 	expToRna \
 	iriToControlTable \
 	iriToDnaMotif \
 	lib \
 	liftPromoHits \
 	motifLogo \
 	motifSig \
 	orf \
 	orfStats \
 	polyInfo \
 	promoSeqFromCluster \
 	raToCds \
 	twinOrf \
 	twinOrf2 \
 	twinOrf3 \
 	twinOrfStats \
 	twinOrfStats2 \
 	twinOrfStats3 
 
 all: $(USE_DIRS:%=%.all)
 
 %.all:
+	cd lib && $(MAKE)
 	( cd $* && echo $* && $(MAKE) )
 
 test::
 	cd clusterGenes && ${MAKE} test
 
 clean:: $(USE_DIRS:%=%.clean)
 
 %.clean::
 	( cd $* && echo $* && $(MAKE) clean )