918c5f5475238b5a7eb216cbbe59547e68eae682 kate Fri Feb 1 15:08:26 2013 -0800 Tool for extracting info from ENCODE controlled vocabulary file entries. Used in building Track #10042: Uniform TFBS diff --git src/hg/encode/makefile src/hg/encode/makefile index 076bde4..ec4eb5a 100644 --- src/hg/encode/makefile +++ src/hg/encode/makefile @@ -1,52 +1,53 @@ # Build all programs in encode directory # List of directories to build DIRS = \ hgEncodeDataVersions \ mkEncodeFrameset \ hgEncodeVocab \ validateFiles \ encodeMkChangeNotes \ paraMd5sum \ encodeStatus \ - hgEncodeApi + hgEncodeApi \ + encodeCvTerm # broken #ldGencodeIntron \ #regionAgp \ # List of pipeline dirs PIPELINE_DIRS = \ encodeLoad \ encodeValidate \ ../utils/automation USE_DIRS = $(DIRS) all: @${MAKE} development @for D in $(USE_DIRS) x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && $(MAKE) ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done development: @for D in ${PIPELINE_DIRS}; do \ (cd $${D} && ${MAKE} development;) \ done beta: @for D in ${PIPELINE_DIRS}; do \ (cd $${D} && ${MAKE} beta;)\ done prod: @for D in ${PIPELINE_DIRS}; do \ (cd $${D} && ${MAKE} prod;) \ done clean:: echo nothing to clean in hg/encode/