Skip to content

Instantly share code, notes, and snippets.

@codername-123
codername-123 / Makefile
Created December 29, 2023 16:46 — forked from zobayer1/Makefile
Generic Makefile for C++ projects with multiple cpp and h files
# Pre-compiler and Compiler flags
CXX_FLAGS := -Wall -Wextra -std=c++17 -ggdb
PRE_FLAGS := -MMD -MP
# Project directory structure
BIN := bin
SRC := src
LIB := lib
INC := include
MAINFILE := $(SRC)/main.cpp