2af6ab3f8390c6c58c642f9fb4d6883ab75f5ab0 galt Wed Mar 13 10:28:51 2013 -0700 adding support for hg/encode3/ to makefile system diff --git src/hg/encode/makefile src/hg/encode/makefile index e4ea8a1..caf6c0b 100644 --- src/hg/encode/makefile +++ src/hg/encode/makefile @@ -1,53 +1,52 @@ # Build all programs in encode directory # List of directories to build DIRS = \ encodeCvTerm \ encodeMkChangeNotes \ encodeStatus \ hgEncodeApi \ hgEncodeDataVersions \ hgEncodeVocab \ mkEncodeFrameset \ - paraMd5sum \ - validateFiles + paraMd5sum # 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/