X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhelm_data%2FMakefile.in;h=498577fa0f5f300f0f181ff162433be1d0da0aa5;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=f969fd7a11a56d0991fafa420340c0cb48684032;hpb=d9d2cc33b01ed9f872d8c51cd60c30a46514ccf2;p=helm.git diff --git a/helm/helm_data/Makefile.in b/helm/helm_data/Makefile.in index f969fd7a1..498577fa0 100644 --- a/helm/helm_data/Makefile.in +++ b/helm/helm_data/Makefile.in @@ -1,12 +1,23 @@ -HELM_DTDS_DIR=@HELM_DTDS_DIR@ -HELM_STYLES_DIR=@HELM_STYLES_DIR@ + +HELM_DTD_DIR=@HELM_DTD_DIR@ +HELM_STYLE_DIR=@HELM_STYLE_DIR@ + +all: install: - mkdir -p $(HELM_STYLES_DIR) - cp dtd/* $(HELM_DTDS_DIR) - cp style/*.xsl $(HELM_STYLES_DIR) + cp dtd/* $(HELM_DTD_DIR) + cp style/*.xsl $(HELM_STYLE_DIR) + +clean: + +distclean: clean + rm -f Makefile configure config.log config.cache config.status *.spec + rm -rf dtd style -distclean: - rm -f Makefile configure config.log config.cache config.status +dist: clean + rm -rf ../@PACKAGE@-@VERSION@ + mkdir ../@PACKAGE@-@VERSION@ + cp -r * ../@PACKAGE@-@VERSION@ + (cd .. ; tar cvfz @PACKAGE@-@VERSION@.tar.gz @PACKAGE@-@VERSION@ ; rm -rf @PACKAGE@-@VERSION@) -.PHONY: install distclean +.PHONY: all install distclean