# This file is dual-licensed.  Choose whichever licence you want from
# the two licences listed below.
#
# The first licence is a regular 2-clause BSD licence.  The second licence
# is the CC-0 from Creative Commons. It is intended to release Monocypher
# to the public domain.  The BSD licence serves as a fallback option.
#
# SPDX-License-Identifier: BSD-2-Clause OR CC0-1.0
#
# ------------------------------------------------------------------------
#
# Copyright (c) 2017-2019, Loup Vaillant
# Copyright (c) 2017, 2019, Fabio Scotoni
# All rights reserved.
#
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the
#    distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# ------------------------------------------------------------------------
#
# Written in 2017-2019 by Loup Vaillant and Fabio Scotoni
#
# To the extent possible under law, the author(s) have dedicated all copyright
# and related neighboring rights to this software to the public domain
# worldwide.  This software is distributed without any warranty.
#
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software.  If not, see
# <https://creativecommons.org/publicdomain/zero/1.0/>
.POSIX:
.SUFFIXES:

CC           ?= gcc -std=c99
CFLAGS       ?= -pedantic -Wall -Wextra -O3 -march=native
DESTDIR      ?=
PREFIX       ?= usr/local
LIBDIR       ?= $(PREFIX)/lib
INCLUDEDIR   ?= $(PREFIX)/include
PKGCONFIGDIR ?= $(LIBDIR)/pkgconfig
MANDIR       ?= $(PREFIX)/share/man/man3
SONAME        = libmonocypher.so.4

.PHONY: all library static-library dynamic-library  \
        install install-lib install-pc install-doc  \
        check test tis-ci ctgrind                   \
        clean uninstall

##################
## Main targets ##
##################
all  : library
check: test

test: test.out
	./test.out

tis-ci: tis-ci.out
	./tis-ci.out

ctgrind: ctgrind.out
	valgrind ./ctgrind.out

clean:
	rm -rf lib/
	rm -f *.out

#############
## Install ##
#############
install: install-lib install-pc install-doc

install-lib: library
	mkdir -p $(DESTDIR)/$(INCLUDEDIR)
	mkdir -p $(DESTDIR)/$(LIBDIR)
	cp -P lib/libmonocypher.a lib/libmonocypher.so* $(DESTDIR)/$(LIBDIR)
	cp -P src/monocypher.h                          $(DESTDIR)/$(INCLUDEDIR)
	cp -P src/optional/monocypher-ed25519.h         $(DESTDIR)/$(INCLUDEDIR)

install-pc: monocypher.pc
	mkdir -p $(DESTDIR)/$(PKGCONFIGDIR)
	sed "s|PREFIX|$(PREFIX)|"  monocypher.pc \
	    > $(DESTDIR)/$(PKGCONFIGDIR)/monocypher.pc

install-doc:
	mkdir -p $(DESTDIR)/$(MANDIR)
	cp -PR doc/man3/*.3monocypher $(DESTDIR)/$(MANDIR)

uninstall:
	rm -f $(DESTDIR)/$(LIBDIR)/libmonocypher.a
	rm -f $(DESTDIR)/$(LIBDIR)/libmonocypher.so*
	rm -f $(DESTDIR)/$(INCLUDEDIR)/monocypher.h
	rm -f $(DESTDIR)/$(INCLUDEDIR)/monocypher-ed25519.h
	rm -f $(DESTDIR)/$(PKGCONFIGDIR)/monocypher.pc
	rm -f $(DESTDIR)/$(MANDIR)/*.3monocypher

##################
## Main library ##
##################
library: static-library dynamic-library
static-library : lib/libmonocypher.a
dynamic-library: lib/libmonocypher.so lib/$(SONAME)

MAIN_O=lib/monocypher.o lib/monocypher-ed25519.o
MAIN_I=-I src -I src/optional

lib/libmonocypher.a: $(MAIN_O)
	$(AR) cr $@ $(MAIN_O)

lib/libmonocypher.so: lib/$(SONAME)
	ln -sf `basename lib/$(SONAME)` $@

lib/$(SONAME): $(MAIN_O)
	$(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$(SONAME) -o $@ $(MAIN_O)

lib/monocypher.o: src/monocypher.c src/monocypher.h
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(MAIN_I) -fPIC -c -o $@ src/monocypher.c

lib/monocypher-ed25519.o: src/optional/monocypher-ed25519.c \
                          src/optional/monocypher-ed25519.h
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(MAIN_I) -fPIC -c -o $@ src/optional/monocypher-ed25519.c

####################
## Test libraries ##
####################
TEST_COMMON=tests/utils.h src/monocypher.h src/optional/monocypher-ed25519.h
TEST_I=$(MAIN_I) -I tests

lib/utils.o: tests/utils.c
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(TEST_I) -fPIC -c -o $@ tests/utils.c

lib/test.o: tests/test.c $(TEST_COMMON) tests/vectors.h
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(TEST_I) -fPIC -c -o $@ tests/test.c

lib/tis-ci.o: tests/tis-ci.c $(TEST_COMMON) tests/tis-ci-vectors.h
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(TEST_I) -fPIC -c -o $@ tests/tis-ci.c

lib/ctgrind.o: tests/ctgrind.c $(TEST_COMMON)
	@mkdir -p $(@D)
	$(CC) $(CFLAGS) $(TEST_I) -fPIC -c -o $@ tests/ctgrind.c

######################
## Test executables ##
######################
TEST_OBJ = lib/utils.o lib/monocypher.o lib/monocypher-ed25519.o

test.out: lib/test.o $(TEST_OBJ)
	$(CC) $(CFLAGS) -o $@ lib/test.o $(TEST_OBJ)

tis-ci.out: lib/tis-ci.o $(TEST_OBJ)
	$(CC) $(CFLAGS) -o $@ lib/tis-ci.o $(TEST_OBJ)

ctgrind.out: lib/ctgrind.o $(TEST_OBJ)
	$(CC) $(CFLAGS) -o $@ lib/ctgrind.o $(TEST_OBJ)
