~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/doc/Makefile.msvc

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Makefile -*- for gettext-tools/doc
 
2
 
 
3
#### Start of system configuration section. ####
 
4
 
 
5
# Flags that can be set on the nmake command line:
 
6
#   PREFIX=Some\Directory   Base directory for installation
 
7
!if !defined(PREFIX)
 
8
PREFIX = c:\usr
 
9
!endif
 
10
 
 
11
# Directories used by "make install":
 
12
prefix = $(PREFIX)
 
13
datadir = $(prefix)\share
 
14
docdir = $(datadir)\doc\gettext
 
15
 
 
16
LN = copy
 
17
RM = -del
 
18
 
 
19
# Programs used by "make install":
 
20
INSTALL = copy
 
21
INSTALL_PROGRAM = copy
 
22
INSTALL_DATA = copy
 
23
 
 
24
#### End of system configuration section. ####
 
25
 
 
26
SHELL = /bin/sh
 
27
 
 
28
all :
 
29
 
 
30
install : all force
 
31
        -mkdir $(prefix)
 
32
        -mkdir $(datadir)
 
33
        -mkdir $(datadir)\doc
 
34
        -mkdir $(docdir)
 
35
        $(INSTALL_DATA) gettext_*.html $(docdir)
 
36
 
 
37
installdirs : force
 
38
        -mkdir $(prefix)
 
39
        -mkdir $(datadir)
 
40
        -mkdir $(datadir)\doc
 
41
        -mkdir $(docdir)
 
42
 
 
43
uninstall : force
 
44
        $(RM) $(docdir)\gettext_*.html
 
45
 
 
46
check : all
 
47
 
 
48
mostlyclean : clean
 
49
 
 
50
clean : force
 
51
        $(RM) core
 
52
 
 
53
distclean : clean
 
54
        $(RM) Makefile
 
55
 
 
56
maintainer-clean : distclean
 
57
 
 
58
force :