16720e7dfab79a7f60e91f0cb102a213c3e4738a max Fri Apr 28 15:39:08 2017 -0700 first big commit for hgGeneGraph. Others will follow as QA progresses. refs #13634 diff --git src/hg/hgGeneGraph/makefile src/hg/hgGeneGraph/makefile new file mode 100644 index 0000000..473b319 --- /dev/null +++ src/hg/hgGeneGraph/makefile @@ -0,0 +1,35 @@ +kentSrc = ../.. +include ../../inc/common.mk + +#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 + +my:: + rm -f ${CGI_BIN_USER}/hgGeneGraph + cp -p hgGeneGraph ${CGI_BIN_USER}/ + +alpha:: + rm -f ${CGI_BIN}/hgMirror + cp -p hgGeneGraph ${CGI_BIN}/ + +beta:: + rm -f ${CGI_BIN_BETA}/hgMirror + cp -p hgGeneGraph ${CGI_BIN_BETA}/ + + +clean:: + +compile:: + +lint:: + pylint -E hgGeneGraph + +install::