15b08d18cac716bb9f09d873f1df06787fab3dfc hiram Tue Apr 19 13:11:01 2022 -0700 bare minimum to satisify build system refs #29237 diff --git src/hg/gar/makefile src/hg/gar/makefile new file mode 100644 index 0000000..f02346a --- /dev/null +++ src/hg/gar/makefile @@ -0,0 +1,24 @@ +kentSrc = ../.. +include $(kentSrc)/inc/common.mk + +ifeq (${CGI_BIN_USER},) + CGI_BIN_USER=${CGI_BIN}-${USER} +endif + +ifeq (${CGI_BIN_BETA},) + CGI_BIN_BETA=${CGI_BIN}-beta +endif + +my:: + cp -p --remove-destination gar.cgi.pl $(CGI_BIN_USER)/gar + +alpha:: + cp -p --remove-destination gar.cgi.pl $(CGI_BIN)/gar + +beta:: + cp -p --remove-destination gar.cgi.pl $(CGI_BIN_BETA)/gar + +install:: + cp -p --remove-destination gar.cgi.pl $(CGI_BIN)/gar + +clean::