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