mingw.mk

Wed, 13 Jul 2016 14:29:50 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 13 Jul 2016 14:29:50 +0200
changeset 244
47791bdf1725
parent 234
33f373b28c8c
child 263
f24b730cb75e
permissions
-rw-r--r--

changed max-retry meaning and filter configuration in sync.xml

prior to this change, max-retry was the number of trials. Now it is exactly the number of retries.

include and exclude filters are now surrounded by an filter element in sync.xml

37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 #
185
cd42cccee550 updated copyright notice
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 153
diff changeset
4 # Copyright 2016 Olaf Wintermann. All rights reserved.
37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 # Redistribution and use in source and binary forms, with or without
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 # modification, are permitted provided that the following conditions are met:
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 # 1. Redistributions of source code must retain the above copyright
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 # notice, this list of conditions and the following disclaimer.
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 # 2. Redistributions in binary form must reproduce the above copyright
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 # notice, this list of conditions and the following disclaimer in the
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 # documentation and/or other materials provided with the distribution.
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 # POSSIBILITY OF SUCH DAMAGE.
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 #
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29 CC = gcc
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 LD = gcc
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 AR = ar
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32 RM = rm
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33
234
33f373b28c8c added support for compiling with gcc on Solaris
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 223
diff changeset
34 CFLAGS = -std=gnu99 -g -c
37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35 COFLAGS = -o
72
aac29f2e8030 dav now opens files in binary mode
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 67
diff changeset
36 LDFLAGS =
37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 LOFLAGS = -o
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38 ARFLAGS = -r
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 RMFLAGS = -f
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
40
67
6b0c60659652 fixed makefile file extensions
Mike Becker <universe@uap-core.de>
parents: 59
diff changeset
41 OBJ_EXT = .o
6b0c60659652 fixed makefile file extensions
Mike Becker <universe@uap-core.de>
parents: 59
diff changeset
42 LIB_EXT = .a
6b0c60659652 fixed makefile file extensions
Mike Becker <universe@uap-core.de>
parents: 59
diff changeset
43 APP_EXT = .exe
37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
44
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45 DAV_CFLAGS = -I /mingw/include/libxml2
153
272173064319 implemented hidden password input for windows by using conio
Mike Becker <universe@uap-core.de>
parents: 75
diff changeset
46 DAV_LDFLAGS = -lcurl -lxml2 -lssl -lcrypto -lws2_32 -lgdi32 -lregex
37
1c81083a3e46 mingw makefile config
Mike Becker <universe@uap-core.de>
parents:
diff changeset
47

mercurial