summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: e32f72bc6458b75640a87c4da5c3d3f2df470b05 (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
CC = gcc
SHELL := /usr/bin/env
.SHELLFLAGS := -S bash -c

# I need to get better at makefiles so I can write this in a way that isn't absolutely insane/stupid
# RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto
# RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto

CFLAGS = -std=c2x -Wall -Wextra -Wpedantic -pedantic-errors -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -O0 $$(pkg-config --cflags libsodium)
LDLIBS += $$(pkg-config --libs-only-l libsodium)
LDFLAGS += $$(pkg-config --libs-only-L libsodium)

SOURCES := $(wildcard *.c)
OBJECTS := $(patsubst %.c,%.o,$(SOURCES))
DEPS := $(patsubst %.c,%.d,$(SOURCES))

.PHONY: all c clean val
.DELETE_ON_ERROR:
.ONESHELL:

all: main
main: $(OBJECTS)

$(OBJECTS): %.o: %.d
include $(DEPS) # Make sure the dependencies are actually included
%.d: %.c
	./depend.sh $$(dirname $*) $(CFLAGS) $*.c > $@

c clean:
	@-rm -rv main $(OBJECTS) $(DEPS) $(wildcard *.test*) $(wildcard *.enc)

val:
	$(MAKE) all
	valgrind --leak-check=yes ./main