summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7e36cc18b7fbde0ce4a9aaec717fb245f18b900f (plain)
1
2
3
4
5
6
7
8
9
CXX=g++
CXXFLAGS=-Wall -Wpedantic -ggdb -std=c++17
SOURCES := $(wildcard *.cpp)
EXECS := $(patsubst %.cpp,%.out,$(SOURCES))

all: $(EXECS)

%.out: %.cpp
	$(CXX) $(CXXFLAGS) $< -o $@