mirror of
https://github.com/iandinwoodie/cpp-design-patterns-for-humans.git
synced 2025-12-17 04:24:40 +03:00
12 lines
173 B
Makefile
12 lines
173 B
Makefile
targets = $(basename $(wildcard *.cpp))
|
|
|
|
CXXFLAGS= -std=c++11 -g -Wall -Werror
|
|
|
|
all: $(targets)
|
|
|
|
$(targets): %: %.cpp
|
|
$(CXX) $(CXXFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
$(RM) $(targets)
|