X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fhttp_getter%2FMakefile.in;h=30189c205627880413e8db521eaf49908f7f5e8f;hb=b564f0671c133928e372e352d972a7663b6a9136;hp=dcf22fc7950b85497dbf8977644b04d3f7b19779;hpb=c9e626cba3af69354dac69bfaefeb346a191fc5a;p=helm.git diff --git a/helm/http_getter/Makefile.in b/helm/http_getter/Makefile.in index dcf22fc79..30189c205 100644 --- a/helm/http_getter/Makefile.in +++ b/helm/http_getter/Makefile.in @@ -1,10 +1,21 @@ -HELM_BIN_DIR=@exec_prefix@ +INSTALL_DIR=@RESOLVED_EXEC_PREFIX@/bin + +all: install: - cp http_getter.pl $(HELM_BIN_DIR) + cp http_getter.pl $(INSTALL_DIR) + +clean: -distclean: +distclean: clean rm -f Makefile configure config.log config.cache config.status \ - http_getter.pl + http_getter.pl *.spec + +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: all install distclean -.PHONY: install distclean