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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
#
# Copyright 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
export S2N_ROOT=$(shell pwd)
export COVERAGE_DIR = $(shell echo "${S2N_ROOT}/coverage")
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
${MAKE} -C stuffer bc
${MAKE} -C tls bc
${MAKE} -C utils bc
.PHONY : saw
saw : bc
$(MAKE) -C tests/saw
include s2n.mk
.PHONY : libs
libs:
$(MAKE) -C pq-crypto
$(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
.PHONY : integrationv2
integrationv2: bin
$(MAKE) -C tests integrationv2
.PHONY : valgrind
valgrind: bin
$(MAKE) -C tests valgrind
.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 : benchmark
benchmark: bin
$(MAKE) -C tests benchmark
.PHONY : coverage
coverage: run-lcov run-genhtml
.PHONY : run-lcov
run-lcov:
$(MAKE) -C bin lcov
$(MAKE) -C crypto lcov
$(MAKE) -C error lcov
$(MAKE) -C pq-crypto run-lcov
$(MAKE) -C stuffer lcov
$(MAKE) -C tests lcov
$(MAKE) -C tls run-lcov
$(MAKE) -C utils lcov
lcov -a crypto/coverage.info -a error/coverage.info -a pq-crypto/coverage.info -a pq-crypto/kyber_r3/coverage.info -a stuffer/coverage.info -a tls/coverage.info -a $(wildcard tls/*/coverage.info) -a utils/coverage.info --output ${COVERAGE_DIR}/all_coverage.info
.PHONY : run-genhtml
run-genhtml:
genhtml -o ${COVERAGE_DIR}/html ${COVERAGE_DIR}/all_coverage.info
.PHONY : indent
indent:
$(MAKE) -C pq-crypto indentsource
$(MAKE) -C tests indentsource
$(MAKE) -C stuffer indentsource
$(MAKE) -C crypto indentsource
$(MAKE) -C utils indentsource
$(MAKE) -C error indentsource
$(MAKE) -C tls indent
$(MAKE) -C bin indentsource
.PHONY : pre_commit_check
pre_commit_check: all indent clean
# TODO use awslabs instead
DEV_IMAGE ?= camshaft/s2n-dev
DEV_OPENSSL_VERSION ?= openssl-1.1.1
DEV_VERSION ?= ubuntu_18.04_$(DEV_OPENSSL_VERSION)_gcc9
dev:
@docker run -it --rm --ulimit memlock=-1 -v `pwd`:/home/s2n-dev/s2n $(DEV_IMAGE):$(DEV_VERSION)
.PHONY : install
install: bin libs
$(MAKE) -C bin install
$(MAKE) -C lib install
.PHONY: uninstall
uninstall:
$(MAKE) -C bin uninstall
$(MAKE) -C lib uninstall
.PHONY : clean
clean:
$(MAKE) -C pq-crypto clean
$(MAKE) -C tests clean
$(MAKE) -C stuffer decruft
$(MAKE) -C crypto decruft
$(MAKE) -C utils decruft
$(MAKE) -C error decruft
$(MAKE) -C tls clean
$(MAKE) -C bin decruft
$(MAKE) -C lib decruft
$(MAKE) -C coverage clean
|