src/hg/encode/makefile 1.11

1.11 2009/03/16 16:22:20 mikep
add validateFiles to makefile directory list
Index: src/hg/encode/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/encode/makefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -b -B -U 1000000 -r1.10 -r1.11
--- src/hg/encode/makefile	26 Aug 2008 22:47:12 -0000	1.10
+++ src/hg/encode/makefile	16 Mar 2009 16:22:20 -0000	1.11
@@ -1,36 +1,37 @@
 # Build all programs in encode directory
 
 # List of directories to build
 
 DIRS = \
 	hgEncodeDataVersions \
 	mkEncodeFrameset \
 	hgEncodeVocab \
+	validateFiles
 
 # 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