diff options
author | Bruno Haible <bruno@clisp.org> | 2003-04-03 11:34:57 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:20 +0200 |
commit | 1bfd53bb6654f47644396c46cd3e06e7c974fdb2 (patch) | |
tree | 9d2962480decb145d8ad146bd882ea8b780866fc /gettext-tools/doc/Makefile.msvc | |
parent | 98d5f8e469c0e205c1f15265d5f4df03c168d211 (diff) | |
download | external_gettext-1bfd53bb6654f47644396c46cd3e06e7c974fdb2.zip external_gettext-1bfd53bb6654f47644396c46cd3e06e7c974fdb2.tar.gz external_gettext-1bfd53bb6654f47644396c46cd3e06e7c974fdb2.tar.bz2 |
The customizable variable must be called $(PREFIX), not $(prefix), because
nmake cannot pass lowercase variable names to subdirectories.
Diffstat (limited to 'gettext-tools/doc/Makefile.msvc')
-rw-r--r-- | gettext-tools/doc/Makefile.msvc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gettext-tools/doc/Makefile.msvc b/gettext-tools/doc/Makefile.msvc index 04d79f2..13f7612 100644 --- a/gettext-tools/doc/Makefile.msvc +++ b/gettext-tools/doc/Makefile.msvc @@ -2,8 +2,14 @@ #### 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 = c:\usr +prefix = $(PREFIX) docdir = $(prefix)\doc\gettext LN = copy |