d163b5a1442510fe6708b3976033a51a36c66d3e cline Mon Jan 24 15:17:19 2011 -0800 Created a subdirectory of utility scripts used for testing UCSC Genes. This might not be the ideal place for this subdirectory, or even the right subdirectory organization, but I wanted to just get these scripts under revision control. They can always be moved again later diff --git src/hg/txGene/makefile src/hg/txGene/makefile index fe2dce0..b57a560 100644 --- src/hg/txGene/makefile +++ src/hg/txGene/makefile @@ -1,35 +1,36 @@ include ../../inc/common.mk L += -lm MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkweb.a all: @for D in ${DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done DIRS = \ txGenbankData \ txGeneAccession \ txGeneAlias \ txGeneAltProt \ txGeneCanonical \ txGeneCdsMap \ txGeneColor \ txGeneExplainUpdate1 \ txGeneFromBed \ txGeneProtAndRna \ txGeneSeparateNoncoding \ + txGeneValidation \ txGeneXref clean: @for D in ${DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} clean ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done