blob: 49685cb4e20c717d9b533f0bf457a881f5aecb1d (
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
47
48
49
50
51
52
53
54
55
56
57
58
|
# -*- Makefile -*- for gettext-tools/doc
#### Start of system configuration section. ####
# Flags that can be set on the nmake command line:
# PREFIX=Some\Directory Base directory for installation
!if !defined(PREFIX)
PREFIX = c:\usr
!endif
# Directories used by "make install":
prefix = $(PREFIX)
datadir = $(prefix)\share
docdir = $(datadir)\doc\gettext
LN = copy
RM = -del
# Programs used by "make install":
INSTALL = copy
INSTALL_PROGRAM = copy
INSTALL_DATA = copy
#### End of system configuration section. ####
SHELL = /bin/sh
all :
install : all force
-mkdir $(prefix)
-mkdir $(datadir)
-mkdir $(datadir)\doc
-mkdir $(docdir)
$(INSTALL_DATA) gettext_*.html $(docdir)
installdirs : force
-mkdir $(prefix)
-mkdir $(datadir)
-mkdir $(datadir)\doc
-mkdir $(docdir)
uninstall : force
$(RM) $(docdir)\gettext_*.html
check : all
mostlyclean : clean
clean : force
$(RM) core
distclean : clean
$(RM) Makefile
maintainer-clean : distclean
force :
|