04bb77038178779e00df92e743a155983153822e braney Wed May 25 17:10:34 2011 -0700 adding hubCheck and hubPublicCheck to the build. hubPublicCheck is called from my crontab now to check that the hubPublic table is consistent with what's in the hubPublic table diff --git src/hg/utils/makefile src/hg/utils/makefile index a74af89..3c23440 100644 --- src/hg/utils/makefile +++ src/hg/utils/makefile @@ -1,72 +1,73 @@ # 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 = \ dumpDb.pl \ mergeOverlapBed4.pl # List of directories to build USE_DIRS = $(DIRS) DIRS = \ bedToPsl \ bedWeedOverlapping \ chromGraphFromBin \ chromGraphToBin \ crTreeIndexBed \ crTreeSearchBed \ gapToLift \ + hubCheck hubPublicCheck \ oligoMatch \ positionalTblCheck \ safePush \ toDev64 \ twoBitMask \ gff3ToGenePred \ gff3ToPsl \ gtfToGenePred \ automation \ refreshNamedSessionCustomTracks \ refSeqGet \ tdbQuery \ wigBedToStep \ overlapSelect \ pslMap \ pslUniq \ makeTrackIndex 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)