Skip to content

Instantly share code, notes, and snippets.

@maxtruxa
maxtruxa / Makefile
Last active May 12, 2024 21:49
Generic makefile for C/C++ with automatic dependency generation, support for deep source file hierarchies and custom intermediate directories.
# output binary
BIN := test
# source files
SRCS := \
test.cpp
# files included in the tarball generated by 'make dist' (e.g. add LICENSE file)
DISTFILES := $(BIN)
@mauriciopoppe
mauriciopoppe / _README.md
Last active January 14, 2026 18:26
Generic Makefile example for a C++ project