Skip to content

Instantly share code, notes, and snippets.

View Chabam's full-sized avatar

Félix Chabot Chabam

View GitHub Profile
@Chabam
Chabam / MakeFile
Created April 12, 2020 22:46
A standard MakeFile template for Clang (or other compilers)
CC = clang
STD_LIBS = -lstdc++
LIBS = $(STD_LIBS)
FLAGS = -std=c++17 -g -Wall -Wextra -Werror $(LIBS) -o
BUILD_DIR = ./bin
SRC_DIR = ./src
INCLUDE = $(SRC_DIR)/main.cpp
EXEC = exec