453e83620fbeefb9fa46707e9102d263f77070fb
kent
  Thu Apr 25 09:37:08 2013 -0700
Adding encodeDataWarehouse to parent directory make file.
diff --git src/hg/encode3/makefile src/hg/encode3/makefile
index 282ce88..19e0796 100644
--- src/hg/encode3/makefile
+++ src/hg/encode3/makefile
@@ -1,44 +1,45 @@
 # Build all programs in encode directory
 
 # List of directories to build
 
 DIRS = \
+	encodeDataWarehouse \
 	validateManifest \
 	validateFiles
 
 # List of pipeline dirs
 PIPELINE_DIRS = \
 
 # much of this file is leftover from encode2
 #        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/encode3/