summaryrefslogtreecommitdiffstats
path: root/gettext-tools/doc/Makefile.vms
blob: 8a53153d3dbb114cf440aa02f22361ab4be83861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- Makefile -*- for gettext-tools/doc on VMS using the MMS utility

#### Start of system configuration section. ####

# Directories used by "make install":
prefix = SYS$DATA:[
datadir = $(prefix).share
docdir = $(datadir).doc.gettext

LN = copy
RM = delete

# Programs used by "make install":
INSTALL = copy
INSTALL_PROGRAM = copy
INSTALL_DATA = copy

#### End of system configuration section. ####

all :

install : all,force
	create /directory $(prefix)]
	create /directory $(prefix).doc]
	create /directory $(docdir)]
	$(INSTALL_DATA) gettext_*.html $(docdir)

installdirs : force
	create /directory $(prefix)]
	create /directory $(prefix).doc]
	create /directory $(docdir)]

uninstall : force
	$(RM) $(docdir)]gettext_*.html

check : all

mostlyclean : clean

clean : force

distclean : clean

maintainer-clean : distclean

force :