26cb56cf83c210ca418cdad41ac00de6620788a3
vsmalladi
  Wed Aug 1 15:19:15 2012 -0700
Forgot to commit makefile for cvValidate.
diff --git python/programs/cvValidate/makefile python/programs/cvValidate/makefile
new file mode 100644
index 0000000..3503631
--- /dev/null
+++ python/programs/cvValidate/makefile
@@ -0,0 +1,27 @@
+# Build encode loader
+
+include ../../../src/inc/common.mk
+
+SCRIPT_FILES = \
+	cvValidate
+
+SCRIPT_INSTALL = "/cluster/bin/scripts"
+
+all:
+	@${MAKE} --no-print-directory SCRIPTS=${HOME}/bin/scripts scripts
+
+alpha:
+	@${MAKE} --no-print-directory SCRIPTS=${SCRIPT_INSTALL} scripts
+
+install: alpha
+
+scripts: ${SCRIPT_FILES:%=${SCRIPTS}/%}
+
+${SCRIPTS}/%: %
+	@mkdir -p $(dir $@)
+	chmod +x $<
+	cp -p $< $@.tmp
+	mv -f $@.tmp $@
+
+clean::
+	echo nothing to clean in hg/encode/encodeQaInit/