Skip to content

Instantly share code, notes, and snippets.

View dadabit's full-sized avatar

Sikai Lu dadabit

View GitHub Profile
@cdmh
cdmh / makefile
Last active December 20, 2021 11:53
A Super-Simple Makefile for Medium-Sized C/C++ Projects
# From https://spin.atomicobject.com/2016/08/26/makefile-c-projects/
TARGET_EXEC ?= a.out
BUILD_DIR ?= ./build
SRC_DIRS ?= ./src
SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s)
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
DEPS := $(OBJS:.o=.d)