Skip to content

Instantly share code, notes, and snippets.

@tonyxwz
tonyxwz / Makefile
Last active May 5, 2021 10:18
Makefile for common C/C++ project
# Thanks to Job Vranish (https://spin.atomicobject.com/2016/08/26/makefile-c-projects/)
TARGET_EXEC := tl
# compiler
# ========
CC := clang -std=c17
CXX := clang++ -std=c++17
# Source file
# ===========
SRC_DIRS := ./src