diff --git a/docs/Makefile b/docs/Makefile index 9ccf3420f4d90b65b7617416e349d2f1ea090297..3c235012df7862b1464a3939d826a8f75bcebc23 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -5,9 +5,11 @@ export DOXYGEN_OUTPUT_DIRECTORY export DOXYGEN_SOURCE_DIRECTORY := .. PODDDIR = ../podd/docs -# THISDIR is location of this directory relative to the podd docs directory -THISDIR = ../../docs -INSTALLPATH = jlabl1:/group/hallc/www/hallcweb/html/hcana/docs/ +# THISDIR is absolute location of this directory +THISDIR = $(PWD) +INSTALLPATH = jlabl1:/group/hallc/www/hallcweb/html/hcana +INSTALLPATHHCANA = $(INSTALLPATH)/docs/ +INSTALLPATHPODD = $(INSTALLPATH)/podddocs/ all: doxygen @@ -31,4 +33,5 @@ clean: # Must have permission to write to $(INSTALLPATH) install: doxygen - rsync -av --delete html/ $(INSTALLPATH) + rsync -av --delete html/ $(INSTALLPATHHCANA) + rsync -av --delete $(PODDDIR)/html/ $(INSTALLPATHPODD)