Files
cpp-design-patterns-for-humans/examples/behavioral/Makefile
2019-05-19 17:42:16 -04:00

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