GSS_S_PROMPTING_NEEDED is a bit
[cyrus-sasl.git] / doc / NTMakefile
1 # Prevent all diagnostic messages
2 VERBOSE=0
3
4 !INCLUDE ..\win32\common.mak
5
6 docdir = $(prefix)\doc
7
8 all: all-recursive
9
10 #
11 # /I flag to xcopy tells to treat the last parameter as directory and create all missing levels
12 #
13 # In order to force xcopy not to confirm if the second parameter is file or directory,
14 # the first parameter has to contain a wildcard character. For example, we use libsasl.l*,
15 # instead of libsasl.lib. Ugly, but works!
16 #
17 install:
18         @xcopy *.txt $(docdir) /I /F /Y
19         @xcopy *.fig $(docdir) /I /F /Y
20         @xcopy *.html $(docdir) /I /F /Y
21         @xcopy TODO $(docdir) /I /F /Y
22         @xcopy ONEWS $(docdir) /I /F /Y
23
24 all-recursive:
25         @echo Nothing to build for target all
26
27 clean:
28         @echo Nothing to do for target clean