1# -*- Makefile -*- for gettext-tools/doc on VMS using the MMS utility
2
3#### Start of system configuration section. ####
4
5# Directories used by "make install":
6prefix = SYS$DATA:[
7datadir = $(prefix).share
8docdir = $(datadir).doc.gettext
9
10LN = copy
11RM = delete
12
13# Programs used by "make install":
14INSTALL = copy
15INSTALL_PROGRAM = copy
16INSTALL_DATA = copy
17
18#### End of system configuration section. ####
19
20all :
21	write sys$output "Nothing to be done for 'all'."
22
23install : all
24	create /directory $(prefix)]
25	create /directory $(datadir)]
26	create /directory $(datadir).doc]
27	create /directory $(docdir)]
28	$(INSTALL_DATA) FAQ.html $(docdir)]FAQ.html
29	$(INSTALL_DATA) tutorial.html $(docdir)]tutorial.html
30	$(INSTALL_DATA) gettext_*.html $(docdir)
31
32installdirs :
33	create /directory $(prefix)]
34	create /directory $(datadir)]
35	create /directory $(datadir).doc]
36	create /directory $(docdir)]
37
38uninstall :
39	$(RM) $(docdir)]FAQ.html;
40	$(RM) $(docdir)]tutorial.html;
41	$(RM) $(docdir)]gettext_*.html;
42
43check : all
44	write sys$output "Nothing else to be done for 'check'."
45
46mostlyclean : clean
47	write sys$output "Nothing else to be done for 'mostlyclean'."
48
49clean :
50	write sys$output "Nothing to be done for 'clean'."
51
52distclean : clean
53	write sys$output "Nothing else to be done for 'distclean'."
54
55maintainer-clean : distclean
56	write sys$output "Nothing else to be done for 'maintainer-clean'."
57