47ea306c424d4b800a1d6fea2cef10547bbaba62 hiram Thu Jun 17 15:37:36 2010 -0700 fixup makefiles to have clean targets diff --git src/hg/encode/makefile src/hg/encode/makefile index 141a951..e7e172f 100644 --- src/hg/encode/makefile +++ src/hg/encode/makefile @@ -1,38 +1,41 @@ # Build all programs in encode directory # List of directories to build DIRS = \ hgEncodeDataVersions \ mkEncodeFrameset \ hgEncodeVocab \ validateFiles \ encodeMkChangeNotes # broken #ldGencodeIntron \ #regionAgp \ # List of pipeline dirs PIPELINE_DIRS = \ encodeLoad \ encodeStatus \ encodeValidate USE_DIRS = $(DIRS) all: @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 install: @for D in ${PIPELINE_DIRS}; do \ (cd $${D} && ${MAKE} install;) \ done pipeline: @${MAKE} --no-print-directory USE_DIRS="${PIPELINE_DIRS}" all + +clean:: + echo nothing to clean in hg/encode/