]> matita.cs.unibo.it Git - helm.git/blob - helm/pacchetti/Makefile
ocaml 3.09 transition
[helm.git] / helm / pacchetti / Makefile
1 all: helm_configuration helm_data helm_http_getter helm_xsltd helm_gtk_interface
2 clean:
3         rm -f helm_*.spec helm_*.tar.gz
4
5 helm_configuration: prep_helm_configuration clean_helm_configuration
6
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
13
14 clean_helm_configuration:
15         rm -rf helm_configuration-0.0.1
16
17
18
19 helm_data: prep_helm_data clean_helm_data
20
21 prep_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
27
28 clean_helm_data:
29         rm -rf helm_data-0.0.1
30
31
32
33 helm_http_getter: prep_helm_http_getter clean_helm_http_getter
34
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
41
42 clean_helm_http_getter:
43         rm -rf helm_http_getter-0.0.1
44
45
46
47 helm_xsltd: prep_helm_xsltd clean_helm_xsltd
48
49 prep_helm_xsltd:
50         cvs export -D20100101 xsltd
51         mv xsltd/helm_xsltd-0.0.1-1.spec .
52         (cd xsltd ; autoconf)
53         mv xsltd helm_xsltd-0.0.1
54         tar -zcvf helm_xsltd-0.0.1-1.tar.gz helm_xsltd-0.0.1
55
56 clean_helm_xsltd:
57         rm -rf helm_xsltd-0.0.1
58
59
60
61 helm_gtk_interface: prep_helm_gtk_interface clean_helm_gtk_interface
62
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
69
70 clean_helm_gtk_interface:
71         rm -rf helm_gtk_interface-0.0.1
72
73
74
75
76 PHONY: all clean helm_configuration prep_helm_configuration clean_helm_configuration