forked from aws/s2n-tls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
106 lines (88 loc) · 2.11 KB
/
Makefile
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
#
PLATFORM := $(shell uname)
MAKEFLAGS += PLATFORM=$(PLATFORM)
ifndef LIBCRYPTO_ROOT
export LIBCRYPTO_ROOT = $(shell echo "`pwd`/libcrypto-root")
endif
DIRS=$(wildcard */)
SRCS=$(wildcard *.c)
OBJS=$(SRCS:.c=.o)
.PHONY : all
all: bin
$(MAKE) -C tests
bitcode :
${MAKE} -C tests/saw bitcode
.PHONY : bc
bc:
${MAKE} -C crypto bc
.PHONY : saw
saw : bc
$(MAKE) -C tests/saw
include s2n.mk
.PHONY : libs
libs:
$(MAKE) -C utils
$(MAKE) -C error
$(MAKE) -C stuffer
$(MAKE) -C crypto
$(MAKE) -C tls
$(MAKE) -C lib
.PHONY : bin
bin: libs
$(MAKE) -C bin
$(MAKE) -C utils
$(MAKE) -C error
$(MAKE) -C stuffer
$(MAKE) -C crypto
$(MAKE) -C tls
$(MAKE) -C lib
.PHONY : integration
integration: bin
$(MAKE) -C tests integration
.PHONY : fuzz
ifeq ($(shell uname),Linux)
fuzz : fuzz-linux
else
fuzz : fuzz-osx
endif
.PHONY : fuzz-osx
fuzz-osx :
@echo "\033[33;1mSKIPPED\033[0m Fuzzing is not supported on \"$$(uname -mprs)\" at this time."
.PHONY : fuzz-linux
fuzz-linux : export S2N_UNSAFE_FUZZING_MODE = 1
fuzz-linux : bin
$(MAKE) -C tests fuzz
.PHONY : indent
indent:
$(MAKE) -C tests indentsource
$(MAKE) -C stuffer indentsource
$(MAKE) -C crypto indentsource
$(MAKE) -C utils indentsource
$(MAKE) -C error indentsource
$(MAKE) -C tls indentsource
$(MAKE) -C bin indentsource
.PHONY : pre_commit_check
pre_commit_check: all indent clean
.PHONY : clean
clean:
$(MAKE) -C tests clean
$(MAKE) -C stuffer decruft
$(MAKE) -C crypto decruft
$(MAKE) -C utils decruft
$(MAKE) -C error decruft
$(MAKE) -C tls decruft
$(MAKE) -C bin decruft
$(MAKE) -C lib decruft