7e836b1bd064252bc91391297bb64ed655d44311
krish
  Tue Aug 10 19:50:10 2010 -0700
added paraMd5sum to the makefile
diff --git src/hg/encode/makefile src/hg/encode/makefile
index e7e172f..3986dc4 100644
--- src/hg/encode/makefile
+++ src/hg/encode/makefile
@@ -1,41 +1,42 @@
 # Build all programs in encode directory
 
 # List of directories to build
 
 DIRS = \
 	hgEncodeDataVersions \
 	mkEncodeFrameset \
 	hgEncodeVocab \
 	validateFiles \
-        encodeMkChangeNotes
+        encodeMkChangeNotes \
+        paraMd5sum
 
 # 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/