src/makefile 1.60

1.60 2009/04/06 18:55:36 larrym
add bedItemOverlapCount and bedExtendRanges to userApps list
Index: src/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/makefile,v
retrieving revision 1.59
retrieving revision 1.60
diff -b -B -U 4 -r1.59 -r1.60
--- src/makefile	30 Mar 2009 18:58:30 -0000	1.59
+++ src/makefile	6 Apr 2009 18:55:36 -0000	1.60
@@ -57,17 +57,22 @@
 	bigWigToBedGraph faCount faSize faFrag faRandomize faOneRecord \
 	faSomeRecords faToNib faToTwoBit gtfToGenePred htmlCheck nibFrag \
 	textHistogram twoBitInfo twoBitToFa userApps wigToBigWig
 
-HG_APPLIST = liftOver
+HG_APPLIST = liftOver bedItemOverlapCount
+
+HG_UTILS_APPLIST = bedExtendRanges
 
 userApps: topLibs
 	@for P in ${UTILS_APPLIST}; do \
 	    ( cd utils/$${P} && echo utils/$${P} && $(MAKE) ) ; \
 	done
 	@for P in ${HG_APPLIST}; do \
 	    ( cd hg/$${P} && echo hg/$${P} && $(MAKE) ) ; \
 	done
+	@for P in ${HG_UTILS_APPLIST}; do \
+	    ( cd hg/utils/$${P} && echo hg/utils/$${P} && $(MAKE) ) ; \
+	done
 
 clean:
 	cd lib && ${MAKE} clean 
 	cd hg && ${MAKE} clean