diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-05-18 23:45:58 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-05-18 23:45:58 +0400 |
| commit | da81a8f76f56a6b21dda16c8df5f1df5f9b962a3 (patch) | |
| tree | c1d6d7ae405c67384e40b3d327958aa129e07dc8 /Makefile | |
| parent | 9b53b8e935a648e225508e51f45d83dfaeacd896 (diff) | |
Добавлена программа разбиения множества
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,9 +1,16 @@ CXX=g++ -CXXFLAGS=-Wall -Wpedantic -ggdb -std=c++17 +CXXFLAGS=-Wall -Wpedantic -O2 -std=c++17 SOURCES := $(wildcard *.cpp) EXECS := $(patsubst %.cpp,%.out,$(SOURCES)) +.PHONY: all clean + all: $(EXECS) %.out: %.cpp $(CXX) $(CXXFLAGS) $< -o $@ + +clean: + $(RM) $(EXECS) + $(RM) -r *.dSYM + |