1# -*- Makefile -*- for gettext-tools/misc on VMS using the MMS utility
2
3#### Start of system configuration section. ####
4
5# Directories used by "make install":
6prefix = SYS$DATA:[
7exec_prefix = $(prefix)
8datadir = $(prefix).share
9emacsdir = $(datadir).emacs
10lispdir = $(emacsdir).site-lisp
11
12LN = copy
13RM = delete
14
15# Programs used by "make install":
16INSTALL = copy
17INSTALL_PROGRAM = copy
18INSTALL_DATA = copy
19
20#### End of system configuration section. ####
21
22all :
23	write sys$output "Nothing to be done for 'all'."
24
25install : all
26	create /directory $(prefix)]
27	create /directory $(datadir)]
28	create /directory $(emacsdir)]
29	create /directory $(lispdir)]
30	$(INSTALL_DATA) po-mode.el $(lispdir)]po-mode.el
31	$(INSTALL_DATA) po-compat.el $(lispdir)]po-compat.el
32
33installdirs :
34	create /directory $(prefix)]
35	create /directory $(datadir)]
36	create /directory $(emacsdir)]
37	create /directory $(lispdir)]
38
39uninstall :
40	$(RM) $(lispdir)]po-mode.el;
41	$(RM) $(lispdir)]po-compat.el;
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