HELM_LIBRARY_DIR=@HELM_LIBRARY_DIR@
install:
+ mkdir -p $(HELM_LIB_DIR)
+ mkdir -p $(HELM_ETC_DIR)
+ mkdir -p $(HELM_LIBRARY_DIR)
cp lib/configuration.pl $(HELM_LIB_DIR)
- cp etc/* $(HELM_ETC_DIR)
+ cp etc/configuration.dtd etc/configuration.xml etc/helm-dictionary.xml \
+ etc/helm-font-configuration.xml etc/helm-math-engine-configuration.xml\
+ $(HELM_ETC_DIR)
cp library/servers.txt library/urls_of_uris.db $(HELM_LIBRARY_DIR)
distclean:
AC_MSG_CHECKING("for the library path")
RES=""
-AC_CACHE_VAL(helm_cv_HELM_LIBRARY_PREFIX,
+AC_CACHE_VAL(helm_cv_HELM_LIBRARY_DIR,
echo "Where should I put the downloaded library? Note: the directory and all the files and subdirectories recursively in it should be world writeable"
- read helm_cv_HELM_LIBRARY_PREFIX
+ read helm_cv_HELM_LIBRARY_DIR
RES="Asked"
)
-HELM_LIBRARY_PREFIX=$helm_cv_HELM_LIBRARY_PREFIX
+HELM_LIBRARY_DIR=$helm_cv_HELM_LIBRARY_DIR
if test "$RES" != "Asked" ; then
- AC_MSG_RESULT($HELM_LIBRARY_PREFIX)
+ AC_MSG_RESULT($HELM_LIBRARY_DIR)
fi
AC_CACHE_SAVE