From 65ea14955f3c7699dc3cec1f0ef19a9f283a7eb0 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Fri, 29 Dec 2000 14:11:06 +0000 Subject: [PATCH] Initial revision --- helm/pacchetti/Makefile | 76 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 helm/pacchetti/Makefile diff --git a/helm/pacchetti/Makefile b/helm/pacchetti/Makefile new file mode 100644 index 000000000..e47e23f45 --- /dev/null +++ b/helm/pacchetti/Makefile @@ -0,0 +1,76 @@ +all: helm_configuration helm_data helm_http_getter helm_xsltd helm_gtk_interface +clean: + rm -f helm_*.spec helm_*.tar.gz + +helm_configuration: prep_helm_configuration clean_helm_configuration + +prep_helm_configuration: + cvs export -D20100101 configuration + mv configuration/helm_configuration-0.0.1-1.spec . + (cd configuration ; autoconf) + mv configuration helm_configuration-0.0.1 + tar -zcvf helm_configuration-0.0.1-1.tar.gz helm_configuration-0.0.1 + +clean_helm_configuration: + rm -rf helm_configuration-0.0.1 + + + +helm_data: prep_helm_data clean_helm_data + +prep_helm_data: + cvs export -D20100101 helm_data + mv helm_data/helm_data-0.0.1-1.spec . + (cd helm_data ; cvs export -D20100101 dtd ; cvs export -D20100101 style ; autoconf) + mv helm_data helm_data-0.0.1 + tar -zcvf helm_data-0.0.1-1.tar.gz helm_data-0.0.1 + +clean_helm_data: + rm -rf helm_data-0.0.1 + + + +helm_http_getter: prep_helm_http_getter clean_helm_http_getter + +prep_helm_http_getter: + cvs export -D20100101 http_getter + mv http_getter/helm_http_getter-0.0.1-1.spec . + (cd http_getter ; autoconf) + mv http_getter helm_http_getter-0.0.1 + tar -zcvf helm_http_getter-0.0.1-1.tar.gz helm_http_getter-0.0.1 + +clean_helm_http_getter: + rm -rf helm_http_getter-0.0.1 + + + +helm_xsltd: prep_helm_xsltd clean_helm_xsltd + +prep_helm_xsltd: + cvs export -D20100101 xsltd + mv xsltd/helm_xsltd-0.0.1-1.spec . + (cd xsltd ; autoconf) + mv xsltd helm_xsltd-0.0.1 + tar -zcvf helm_xsltd-0.0.1-1.tar.gz helm_xsltd-0.0.1 + +clean_helm_xsltd: + rm -rf helm_xsltd-0.0.1 + + + +helm_gtk_interface: prep_helm_gtk_interface clean_helm_gtk_interface + +prep_helm_gtk_interface: + cvs export -D20100101 interface + mv interface/helm_gtk_interface-0.0.1-1.spec . + (cd interface ; autoconf) + mv interface helm_gtk_interface-0.0.1 + tar -zcvf helm_gtk_interface-0.0.1-1.tar.gz helm_gtk_interface-0.0.1 + +clean_helm_gtk_interface: + rm -rf helm_gtk_interface-0.0.1 + + + + +PHONY: all clean helm_configuration prep_helm_configuration clean_helm_configuration -- 2.39.2