-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·111 lines (76 loc) · 2.45 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
107
108
109
110
111
# target binary
BIN := amss
BIN_DIR := bin
TESTS := test_hashes test_wots test_merkle test_amsa
# PREFIX ?= arm-none-eabi
# select compiler
CXX := gcc
#CXXFLAGS = -g -Wall -O0 -fno-omit-frame-pointer # debug
CXXFLAGS = -Wall -O3 # benchmarking
CSTD ?= -std=c99 # c18
# sources
SRC_EXT := .c
SRC_DIR := src
SRC_SUBDIRS := hashes util
# include paths (space separated)
INC_DIRS = . ./hashes /usr/include
# library paths (space separated)
LIB_DIRS := # /usr/lib/x86_64-linux-gnu/openssl
# library names e.g. "pthread" or crypto"
LIB_NAMES := #crypto # uncomment for SSL
# where to store the objects
OBJ_DIR := ./obj
OBJ_EXT := .o
# Do not etdit below this line
# ----------------------------------------------------
# find and collect sources
SRCS := $(wildcard $(SRC_DIR)/*$(SRC_EXT))
SRCS += $(foreach subdir,$(SRC_SUBDIRS),$(wildcard $(SRC_DIR)/$(subdir)/*$(SRC_EXT)))
# collect includes
INCS += $(foreach idir,$(INC_DIRS),-I$(idir))
# collect libraries
LIBS += $(foreach ldir,$(LIB_DIRS),-L$(ldir))
LIBS += $(foreach lname,$(LIB_NAMES),-l$(lname))
# determine objects to build based on sources
OBJS += $(patsubst $(SRC_DIR)/%$(SRC_EXT), $(OBJ_DIR)/%.o, $(SRCS))
OBJS := $(OBJS:$(SRC_EXT)=$(OBJ_EXT)) # double protection
# determine objects to link for binaries
LINKOBJ := $(filter-out $(OBJ_DIR)/main.o,$(OBJS))
# add flags
CXXFLAGS += -include src/config.h
# available targets
# ----------------------------------------------------
all: echo mkobjdirs tests
lib: amsa_lib.a
tests: $(TESTS)
clean:
@rm -f $(BIN_DIR)/$(BIN) $(OBJS)
# Internal rules
# ----------------------------------------------------
echo:
@echo "Compiling with $(CXX) $(CXXFLAGS)"
@echo "Includes: $(INCS)"
@echo "Libraries: $(LIBS)"
@echo "Sources: $(SRCS)"
@echo "Objects: $(OBJS)"
@echo ""
amsa_lib.a: obj/amss.o obj/hash.o obj/merkle.o obj/wots.o obj/hashes/sha256.o
$(AR) rcs $@ $^
mkobjdirs:
@mkdir -p $(BIN_DIR)
@mkdir -p $(foreach subdir, $(SRC_SUBDIRS), $(OBJ_DIR)/$(subdir))
# link objects
main: $(OBJS)
@echo "Linking $@..."
$(CXX) $^ -o $(BIN_DIR)/$(BIN) $(CXXFLAGS) $(INCS) $(LIBS)
# compile sources to objects
$(TESTS): $(OBJS)
@echo "\nLinking $@:"
$(CXX) $(LINKOBJ) src/bin/[email protected] -o $(BIN_DIR)/$@ $(CXXFLAGS) $(INCS) $(LIBS)
# compile sources to objects
$(OBJ_DIR)/%$(OBJ_EXT):$(SRC_DIR)/%$(SRC_EXT)
$(CXX) -c -o $@ $< $(CXXFLAGS)
# will be called even if newest files exists
.PHONY: clean
# References
# https://ubuntuforums.org/showthread.php?t=1204739