]> matita.cs.unibo.it Git - helm.git/blob - helm/configuration/Makefile.in
now servers.txt and urls_or_uris.db are 666
[helm.git] / helm / configuration / Makefile.in
1 HELM_LIB_DIR=@HELM_LIB_DIR@
2 HELM_ETC_DIR=@HELM_ETC_DIR@
3 HELM_LIBRARY_DIR=@HELM_LIBRARY_DIR@
4 CONFIGURATION_DTD_DIR=@CONFIGURATION_DTD_DIR@
5 CONFIGURATION_HELM_DIR=@CONFIGURATION_HELM_DIR@
6
7 install:
8         mkdir -p $(HELM_LIB_DIR)
9         mkdir -p $(HELM_ETC_DIR)
10         mkdir -p $(CONFIGURATION_HELM_DIR)
11         chmod 777 $(CONFIGURATION_HELM_DIR)
12         mkdir -p $(CONFIGURATION_DTD_DIR)
13         cp lib/configuration.pl $(HELM_LIB_DIR)
14         cp etc/configuration.dtd etc/configuration.xml etc/helm-dictionary.xml \
15          etc/helm-font-configuration.xml etc/helm-math-engine-configuration.xml\
16          $(HELM_ETC_DIR)
17         cp library/servers.txt library/urls_of_uris.db $(HELM_LIBRARY_DIR)
18         chmod 666 $(HELM_LIBRARY_DIR)/servers.txt \
19          $(HELM_LIBRARY_DIR)/urls_of_uris.db
20
21 distclean:
22         rm -f Makefile configure config.log config.cache config.status \
23         etc/configuration.xml etc/helm-math-engine-configuration.xml \
24         lib/configuration.pl
25
26 .PHONY: install distclean