c7da6212382f6efa86b8c2f4ca9f267d8273bfdc
max
  Mon Mar 9 03:08:07 2015 -0700
fixing the help message and the tester in hgBeacon.

diff --git src/hg/hgBeacon/makefile src/hg/hgBeacon/makefile
index aef6e66..8b7ee21 100644
--- src/hg/hgBeacon/makefile
+++ src/hg/hgBeacon/makefile
@@ -2,35 +2,35 @@
 
 #cannot use common include rules, don't know how to overwrite :: targets
 #include ../../inc/cgi_build_rules.mk
 
 ifeq (${CGI_BIN_USER},)
     CGI_BIN_USER=${CGI_BIN}-${USER}
 endif
 
 ifeq (${CGI_BIN_BETA},)
     CGI_BIN_BETA=${CGI_BIN}-beta
 endif
 
 PATH:=$(PATH):/cluster/software/bin
 
 my::
-	pylint -E --rcfile=pylint.rc hgBeacon
 	rm -f ${CGI_BIN_USER}/hgBeacon
+	cp -p hgBeacon ${CGI_BIN_USER}/
 	mkdir -p ${CGI_BIN_USER}/beacon2
 	ln -sf ${CGI_BIN_USER}/hgBeacon ${CGI_BIN_USER}/beacon2/info
 	ln -sf ${CGI_BIN_USER}/hgBeacon ${CGI_BIN_USER}/beacon2/query
-	cp -p hgBeacon ${CGI_BIN_USER}/
+	cp help.txt /gbdb/hg19/beacon/
 beta::
-	pylint -E --rcfile=pylint.rc hgBeacon
 	rm -f ${CGI_BIN_BETA}/hgBeacon
 	cp -p hgBeacon ${CGI_BIN_BETA}/
 alpha::
-	pylint -E --rcfile=pylint.rc hgBeacon
 	rm -f ${CGI_BIN}/hgBeacon
 	cp -p hgBeacon ${CGI_BIN}/
+lint:
+	pylint -E --rcfile=pylint.rc hgBeacon
 clean::
 
 compile::
 
 install::