232074610513870c470c1263d3c46ff9b4ac3450 hiram Tue Apr 2 17:22:55 2013 -0700 minimal makefiles now in place for kentUtils build refs #9104 diff --git src/hg/utils/makefile src/hg/utils/makefile index ebe48ce..2d485d9 100644 --- src/hg/utils/makefile +++ src/hg/utils/makefile @@ -1,78 +1,82 @@ # Build all directories in utils # test comment # $Id: makefile,v 1.21 2010/06/04 00:12:42 larrym Exp $ include ../../inc/common.mk SCRIPT_FILES = \ dbNsfpToBed.pl \ dumpDb.pl \ mergeOverlapBed4.pl \ mergeSortedBed3Plus.pl # List of directories to build USE_DIRS = $(DIRS) DIRS = \ bedToPsl \ bedExtendRanges \ bedWeedOverlapping \ chromGraphFromBin \ chromGraphToBin \ crTreeIndexBed \ crTreeSearchBed \ gapToLift \ hubCheck hubPublicCheck \ makeTableList \ oligoMatch \ positionalTblCheck \ safePush \ toDev64 \ twoBitMask \ gff3ToGenePred \ gff3ToPsl \ gtfToGenePred \ automation \ refreshNamedSessionCustomTracks \ refSeqGet \ tdbQuery \ wigBedToStep \ overlapSelect \ pslMap \ pslUniq \ makeTrackIndex \ geoMirrorNode TEST_DIRS = \ gff3ToGenePred \ gff3ToPsl \ gtfToGenePred \ overlapSelect \ pslMap \ refSeqGet all:: utils utils: $(USE_DIRS:%=%.utils) %.utils: (cd $* && $(MAKE)) scripts: $(SCRIPT_FILES:%=%.scripts) %.scripts: chmod +x $* rm -f ${SCRIPTS}/$* cp -p $* ${SCRIPTS}/$* alpha: scripts all test:: ${TEST_DIRS:%=%.test} %.test: (cd $* && ${MAKE} test) clean:: $(USE_DIRS:%=%.clean) - find . -name '*.o' -exec rm {} \; %.clean: (cd $* && ${MAKE} clean) +compile:: $(USE_DIRS:%=%.compile) + - find . -name '*.o' -exec rm {} \; +%.compile: + (cd $* && ${MAKE} compile)