This commit is contained in:
2024-05-16 09:25:25 +02:00
parent ca93b3369f
commit d03261b873
13 changed files with 23 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ CXX = g++
# define any compile-time flags
# CXXFLAGS := -std=c++17 -Wall -Wextra -g -lssl -lcrypto -w
CXXFLAGS := -Wall -Wextra -g -lssl -lcrypto
CXXFLAGS := -Wall -Wextra -g -lssl -lcrypto -std=c++11
# define library paths in addition to /usr/lib
# if I wanted to include libraries not in /usr/lib I'd specify
@@ -16,10 +16,10 @@ CXXFLAGS := -Wall -Wextra -g -lssl -lcrypto
LFLAGS =
# define output directory
OUTPUT := output
OUTPUT:= output
# define source directory
SRC := src src/common src/reader src/generator
SRC := src src/common src/reader src/generator
# define include directory
INCLUDE := include include/common include/reader include/generator