1 all: helm_configuration helm_data helm_http_getter helm_xsltd helm_gtk_interface
3 rm -f helm_*.spec helm_*.tar.gz
5 helm_configuration: prep_helm_configuration clean_helm_configuration
7 prep_helm_configuration:
8 cvs export -D20100101 configuration
9 mv configuration/helm_configuration-0.0.1-1.spec .
10 (cd configuration ; autoconf)
11 mv configuration helm_configuration-0.0.1
12 tar -zcvf helm_configuration-0.0.1-1.tar.gz helm_configuration-0.0.1
14 clean_helm_configuration:
15 rm -rf helm_configuration-0.0.1
19 helm_data: prep_helm_data clean_helm_data
22 cvs export -D20100101 helm_data
23 mv helm_data/helm_data-0.0.1-1.spec .
24 (cd helm_data ; cvs export -D20100101 dtd ; cvs export -D20100101 style ; autoconf)
25 mv helm_data helm_data-0.0.1
26 tar -zcvf helm_data-0.0.1-1.tar.gz helm_data-0.0.1
29 rm -rf helm_data-0.0.1
33 helm_http_getter: prep_helm_http_getter clean_helm_http_getter
35 prep_helm_http_getter:
36 cvs export -D20100101 http_getter
37 mv http_getter/helm_http_getter-0.0.1-1.spec .
38 (cd http_getter ; autoconf)
39 mv http_getter helm_http_getter-0.0.1
40 tar -zcvf helm_http_getter-0.0.1-1.tar.gz helm_http_getter-0.0.1
42 clean_helm_http_getter:
43 rm -rf helm_http_getter-0.0.1
47 helm_xsltd: prep_helm_xsltd clean_helm_xsltd
50 cvs export -D20100101 xsltd
51 mv xsltd/helm_xsltd-0.0.1-1.spec .
53 mv xsltd helm_xsltd-0.0.1
54 tar -zcvf helm_xsltd-0.0.1-1.tar.gz helm_xsltd-0.0.1
57 rm -rf helm_xsltd-0.0.1
61 helm_gtk_interface: prep_helm_gtk_interface clean_helm_gtk_interface
63 prep_helm_gtk_interface:
64 cvs export -D20100101 interface
65 mv interface/helm_gtk_interface-0.0.1-1.spec .
66 (cd interface ; autoconf)
67 mv interface helm_gtk_interface-0.0.1
68 tar -zcvf helm_gtk_interface-0.0.1-1.tar.gz helm_gtk_interface-0.0.1
70 clean_helm_gtk_interface:
71 rm -rf helm_gtk_interface-0.0.1
76 PHONY: all clean helm_configuration prep_helm_configuration clean_helm_configuration