Skip to content

Instantly share code, notes, and snippets.

View david-gettins's full-sized avatar

David Gettins david-gettins

View GitHub Profile
@zobayer1
zobayer1 / Makefile
Last active November 8, 2024 13:37
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