sources in separate files

This commit is contained in:
Benedikt Galbavy 2023-10-23 10:28:26 +02:00
parent 4f9021991e
commit c16360be0b
9 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
CC = g++ CC = g++
ASAN_FLAGS = -fsanitize=address -fno-omit-frame-pointer -Wno-format-security ASAN_FLAGS = -fsanitize=address -fno-omit-frame-pointer -Wno-format-security
CFLAGS := -g -std=c++20 -Wall -I./include CFLAGS := -g -std=c++20 -Wall -I./include -I./server -I./client
LDFLAGS += -fsanitize=address -lpthread -lssl -lcrypto LDFLAGS += -fsanitize=address -lpthread -lssl -lcrypto
VPATH = server/:client/
TARGET = client server TARGET = client server
BUILD_DIR = build BUILD_DIR = build