diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-04-27 13:46:41 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-04-27 13:46:41 +0400 |
| commit | ca510e0f9f3da8560ac72a4c80b33b167582e5e5 (patch) | |
| tree | 3aa25f002795855b1827663d025fef6abb69a8c8 /Makefile | |
| parent | 8065f44d09a9dd570bbcc94b9806ee558456aa62 (diff) | |
Добавил алгоритм обхода конём
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e36cc1 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 $@ |