7b8b81e0a4869b24cdd8d7d31eaad33aacb87c0a
hiram
  Wed Aug 21 09:03:50 2024 -0700
will now perform the request email properly and the html page can take arguments refs #32596

diff --git src/hg/gar/makefile src/hg/gar/makefile
index 500b507..d82d82d 100644
--- src/hg/gar/makefile
+++ src/hg/gar/makefile
@@ -1,30 +1,36 @@
 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
+	cp -p --remove-destination  asl.cgi.pl $(CGI_BIN_USER)/asl
 
 cgi::
 	cp -p --remove-destination  gar.cgi.pl $(CGI_BIN_USER)/gar
+	cp -p --remove-destination  asl.cgi.pl $(CGI_BIN_USER)/asl
 
 alpha::
 	cp -p --remove-destination  gar.cgi.pl $(CGI_BIN)/gar
+	cp -p --remove-destination  asl.cgi.pl $(CGI_BIN)/asl
 
 beta::
 	cp -p --remove-destination  gar.cgi.pl $(CGI_BIN_BETA)/gar
+	cp -p --remove-destination  asl.cgi.pl $(CGI_BIN_BETA)/asl
 
 install::
 	cp -p --remove-destination  gar.cgi.pl $(CGI_BIN)/gar
+	cp -p --remove-destination  asl.cgi.pl $(CGI_BIN)/asl
 
 compile::
 	@ls -og gar.cgi.pl
+	@ls -og asl.cgi.pl
 
 clean::