aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: eb34c1beea18dcd01b1bc1ad22420663a43ab668 (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
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
ifeq ($(PREFIX),)
	PREFIX := /usr/local
endif

ifeq ($(BINDIR),)
	BINDIR := /sbin
endif

# Compiler
CXX = g++
CC = gcc

CFLAGS = -Wall -Wextra -Werror -Wno-unused-function
CFLAGS += -Isrc

# Compiler flags
CXXFLAGS = $(CFLAGS)
CXXFLAGS += -std=c++20

# Release flags
RELEASE_FLAGS = -O3
RELEASE_LDFLAGS = -lrt

# Debug flags
DEBUGFLAGS = -ggdb -O0 -fsanitize=address -fno-omit-frame-pointer

# Linking flags
LDFLAGS =

C_OBJECTS := src/crypto/encoding.o
C_OBJECTS += src/crypto/curve25519.o
C_OBJECTS += src/crypto/halfsiphash.o
C_OBJECTS += src/crypto/pubkey.o

# Object files
OBJECTS := src/wg2nd.o

# Source directory
SRC_DIR = src
TEST_DIR = test

TEST_FILES := $(wildcard $(TEST_DIR)/*.cpp)
TEST_TARGETS := $(patsubst $(TEST_DIR)/%.cpp, $(TEST_DIR)/%, $(TEST_FILES))

SRC_FILES := $(patsubst %.o,$(SRC_DIR)/%.cpp,$(OBJECTS))

# Target executable
CMD = wg2nd

# Build rules
all: CXXFLAGS += $(RELEASE_FLAGS)
all: CFLAGS += $(RELEASE_FLAGS)
all: LDFLAGS += $(RELEASE_LDFLAGS)
all: targets

targets: $(CMD)

tests: $(TEST_TARGETS)

debug: CXXFLAGS += $(DEBUGFLAGS)
debug: CFLAGS += $(DEBUGFLAGS)
debug: tests targets

$(CMD): $(OBJECTS) $(C_OBJECTS) src/main.cpp
	$(CXX) $(CXXFLAGS) $^ $(LDFLAGS) -o $@

$(OBJECTS): %.o: %.cpp
	$(CXX) $(CXXFLAGS) -c $< -o $@

$(C_OBJECTS): %.o: %.c
	$(CC) $(CFLAGS) -c $< -o $@

$(TEST_DIR)/%: $(TEST_DIR)/%.cpp $(OBJECTS) $(C_OBJECTS)
	$(CXX) $(CXXFLAGS) $^ $(LDFLAGS) -o $@

install:
	mkdir -p $(DESTDIR)$(PREFIX)$(BINDIR)/
	install -m 755 $(CMD) $(DESTDIR)$(PREFIX)$(BINDIR)/

uninstall:
	rm -rf $(DESTDIR)$(PREFIX)$(BINDIR)/$(CMD)

# Clean rule
clean:
	rm -rf $(TARGET) $(TEST_TARGETS) $(C_OBJECTS) $(OBJECTS) $(CMD)

.PHONY: install uninstall all clean targets tests

# Help rule
help:
	@echo "Available targets:"
	@echo "  all (default)   : Build the project"
	@echo "  tests           : Build the tests"
	@echo "  debug           : Build the project and tests with debug flags"
	@echo "  clean           : Remove all build artifacts"
	@echo "  install         : install build executables"
	@echo "  uninstall       : uninstall build executables"
	@echo "  help            : Display this help message"