Skip to content

Instantly share code, notes, and snippets.

View dctape's full-sized avatar

Ezechiel Tapé dctape

  • INSA Toulouse
  • Toulouse
View GitHub Profile
@dctape
dctape / Makefile
Created December 10, 2019 07:39 — forked from maxtruxa/Makefile
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)