aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/BearSSL/conf/Win.mk
blob: 2ed4bb6895aadeac30ea384319b599fe94a90d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Configuration for a native build on a Windows system with Visual Studio.

# Build directory.
BUILD = build

# Extension for executable files.
E = .exe

# Extension for object files.
O = .obj

# Prefix for static library file name.
LP =

# Extension for static library file name. We add an 's' so that the
# name is distinct from the 'import library' generated along with the DLL.
L = s.lib

# Prefix for DLL file name.
DP =

# Extension for DLL file name.
D = .dll

# Output file names can be overridden directly. By default, they are
# assembled using the prefix/extension macros defined above.
# BEARSSLLIB = bearssls.lib
# BEARSSLDLL = bearssl.dll
# BRSSL = brssl.exe
# TESTCRYPTO = testcrypto.exe
# TESTSPEED = testspeed.exe
# TESTX509 = testx509.exe

# File deletion tool.
RM = del /Q

# Directory creation tool.
MKDIR = mkdir

# C compiler and flags.
CC = cl
CFLAGS = -nologo -W2 -O2
CCOUT = -c -Fo

# Static library building tool.
AR = lib
ARFLAGS = -nologo
AROUT = -out:

# DLL building tool.
LDDLL = cl
LDDLLFLAGS = -nologo -LD -MT
LDDLLOUT = -Fe

# Static linker.
LD = cl
LDFLAGS = -nologo
LDOUT = -Fe

# C# compiler.
MKT0COMP = mk$PmkT0.cmd
RUNT0COMP = T0Comp.exe

# Set the values to 'no' to disable building of the corresponding element
# by default. Building can still be invoked with an explicit target call
# (e.g. 'make dll' to force build the DLL).
#STATICLIB = no
#DLL = no
#TOOLS = no
#TESTS = no