src/hg/encode/makefile 1.12

1.12 2010/03/15 22:23:08 krish
added script to generate changes notes for ENCODE tracks
Index: src/hg/encode/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/encode/makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -B -U 1000000 -r1.11 -r1.12
--- src/hg/encode/makefile	16 Mar 2009 16:22:20 -0000	1.11
+++ src/hg/encode/makefile	15 Mar 2010 22:23:08 -0000	1.12
@@ -1,37 +1,38 @@
 # Build all programs in encode directory
 
 # List of directories to build
 
 DIRS = \
 	hgEncodeDataVersions \
 	mkEncodeFrameset \
 	hgEncodeVocab \
-	validateFiles
+	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