257675a4fe52badf7773d16e3bc788c61cae5a0d
braney
  Wed Jan 12 12:49:50 2011 -0800
fix up some misunderstanding about where the gtf utilities live
diff --git src/makefile src/makefile
index 79516ea..5f48851 100644
--- src/makefile
+++ src/makefile
@@ -52,33 +52,35 @@
 	cd utils/twoBitInfo && ${MAKE}
 	cd isPcr && ${MAKE}
 	cd blatz && ${MAKE}
 
 # all of these application makefiles have been updated to include use
 #	of DESTDIR and BINDIR
 
 UTILS_APPLIST = bedClip bedGraphToBigWig bedToBigBed \
         bigBedInfo bigBedSummary bigBedToBed \
 	bigWigInfo bigWigSummary bigWigToBedGraph bigWigToWig\
 	faCount faFrag faOneRecord faRandomize faSize faSomeRecords faToNib \
 	faToTwoBit htmlCheck nibFrag stringify \
 	textHistogram twoBitInfo twoBitToFa userApps wigCorrelate wigToBigWig
 
 HG_APPLIST = bedSort liftUp liftOver bedItemOverlapCount encode/validateFiles \
-	 gtfToGenePred ratStuff/mafsInRegion ratStuff/mafSpeciesSubset pslCDnaFilter
+	 ratStuff/mafsInRegion ratStuff/mafSpeciesSubset \
+	 pslCDnaFilter genePredToGtf
 
-HG_UTILS_APPLIST = bedExtendRanges gff3ToGenePred overlapSelect
+
+HG_UTILS_APPLIST = bedExtendRanges gff3ToGenePred gtfToGenePred overlapSelect
 
 userApps: topLibs hgLib
 	@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:
 	@for D in ${DIRS} x; do \
             if test "$$D" != "x" ; then \