--- /dev/null
+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