1# Prevent all diagnostic messages
2VERBOSE=0
3
4!INCLUDE ..\win32\common.mak
5
6docdir = $(prefix)\doc
7
8all: 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#
17install:
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
24all-recursive:
25	@echo Nothing to build for target all
26
27clean:
28	@echo Nothing to do for target clean
29