summaryrefslogtreecommitdiffstats
path: root/makefile
blob: c18edc576ec85c13c91c2216ad6197b84511842c (plain)
1
2
3
4
5
6
7
8
CPPC    := c++
CPPARGS := -Wall -Werror -I. -std=c++17 -pedantic

all: build/example

build/%: %.cpp mmvec.hpp
	mkdir -p build
	$(CPPC) $(CPPARGS) $< -o $@