From fafe841057138522969c584bb075d5e15aa94d9b Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 8 Dec 2025 19:01:25 -0600 Subject: [PATCH] feat: remove makefiles --- codeforces/1017/makefile | 95 ---------------------------------------- codeforces/1020/makefile | 28 ------------ codeforces/1029/makefile | 30 ------------- codeforces/1032/makefile | 30 ------------- codeforces/1034/makefile | 30 ------------- codeforces/1037/makefile | 30 ------------- codeforces/1043/makefile | 30 ------------- codeforces/762/makefile | 30 ------------- codeforces/784/makefile | 30 ------------- codeforces/790/makefile | 30 ------------- codeforces/806/makefile | 30 ------------- codeforces/817/makefile | 30 ------------- codeforces/827/makefile | 30 ------------- codeforces/835/makefile | 30 ------------- codeforces/874/makefile | 30 ------------- codeforces/886/makefile | 29 ------------ codeforces/888/makefile | 30 ------------- codeforces/898/makefile | 30 ------------- codeforces/903/makefile | 30 ------------- codeforces/918/makefile | 30 ------------- codeforces/920/makefile | 30 ------------- codeforces/928/makefile | 30 ------------- codeforces/929/makefile | 30 ------------- codeforces/935/makefile | 30 ------------- codeforces/937/makefile | 28 ------------ codeforces/944/makefile | 28 ------------ codeforces/962/makefile | 30 ------------- codeforces/970/makefile | 28 ------------ codeforces/981/makefile | 30 ------------- codeforces/993/makefile | 30 ------------- codeforces/995/makefile | 28 ------------ codeforces/998/makefile | 30 ------------- 32 files changed, 1014 deletions(-) delete mode 100644 codeforces/1017/makefile delete mode 100644 codeforces/1020/makefile delete mode 100644 codeforces/1029/makefile delete mode 100644 codeforces/1032/makefile delete mode 100644 codeforces/1034/makefile delete mode 100644 codeforces/1037/makefile delete mode 100644 codeforces/1043/makefile delete mode 100644 codeforces/762/makefile delete mode 100644 codeforces/784/makefile delete mode 100644 codeforces/790/makefile delete mode 100644 codeforces/806/makefile delete mode 100644 codeforces/817/makefile delete mode 100644 codeforces/827/makefile delete mode 100644 codeforces/835/makefile delete mode 100644 codeforces/874/makefile delete mode 100644 codeforces/886/makefile delete mode 100644 codeforces/888/makefile delete mode 100644 codeforces/898/makefile delete mode 100644 codeforces/903/makefile delete mode 100644 codeforces/918/makefile delete mode 100644 codeforces/920/makefile delete mode 100644 codeforces/928/makefile delete mode 100644 codeforces/929/makefile delete mode 100644 codeforces/935/makefile delete mode 100644 codeforces/937/makefile delete mode 100644 codeforces/944/makefile delete mode 100644 codeforces/962/makefile delete mode 100644 codeforces/970/makefile delete mode 100644 codeforces/981/makefile delete mode 100644 codeforces/993/makefile delete mode 100644 codeforces/995/makefile delete mode 100644 codeforces/998/makefile diff --git a/codeforces/1017/makefile b/codeforces/1017/makefile deleted file mode 100644 index e454976..0000000 --- a/codeforces/1017/makefile +++ /dev/null @@ -1,95 +0,0 @@ -.PHONY: run debug clean setup init - -CXX = g++ -# lefticus.gitbooks.io/cpp-best-practice -CXXFLAGS := -O2 -Wall -Wextra -Wpedantic -Wshadow -Wformat=2 \ - -Wfloat-equal -Wlogical-op -Wshift-overflow=2 -Wnon-virtual-dtor \ - -Wold-style-cast -Wcast-equal -Wuseless-cast -Wno-sign-promotion \ - -Wcast-align -Wunused -Woverloaded-virtual -Wconversion \ - -Wsign-conversion -Wmisleading-indentation -Wduplicated-cond \ - -Wduplicated-branches -Wlogical-op -Wnull-dereference -Wformat=2 \ - -Wformat-overflow -Wformat-truncation -Wdouble-promotion -Wundef \ - -DLOCAL -std=c++20 - -# https://interrupt.memfault.com/blog/best-and-worst-gcc-clang-compiler-flags -DEBUG_CXX_FLAGS := -g3 -fsanitize=address,undefined \ - -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \ - -fno-sanitize-recover=all -fstack-protector-all -fstack-usage \ - -fno-omit-frame-pointer -fno-inline -ffunction-sections - -DEBUG_CXXFLAGS += -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC - -SRC = $(word 2,$(MAKECMDGOALS)) -BASE = $(basename $(SRC)) -INPUT = $(BASE).in -OUTPUT = $(BASE).out -RUN_BIN = $(BASE).run -DBG_BIN = $(BASE).debug - -TEMPLATE_DIR = ~/.config/cp-template - -.SILENT: - -run: $(RUN_BIN) - $(call execute_binary,$(RUN_BIN)) - -debug: $(DBG_BIN) - $(call execute_binary,$(DBG_BIN)) - -$(RUN_BIN): $(SRC) - test -f $@ && rm $@ || true - $(CXX) @compile_flags.txt $(SRC) -o $@ 2>$(OUTPUT); \ - CODE=$$?; \ - if [ $${CODE} -gt 0 ]; then \ - printf '\n[code]: %s' $${CODE} >>$(OUTPUT); \ - exit $${CODE}; \ - else \ - echo '' >$(OUTPUT); \ - fi - -$(DBG_BIN): $(SRC) - test -f $@ && rm $@ || true - $(CXX) @compile_flags.txt $(DEBUG_CXX_FLAGS) $(SRC) -o $@ 2>$(OUTPUT); \ - CODE=$$?; \ - if [ $${CODE} -gt 0 ]; then \ - printf '\n[code]: %s' $${CODE} >>$(OUTPUT); \ - exit $${CODE}; \ - else \ - echo '' >$(OUTPUT); \ - fi - -define execute_binary - timeout 2s ./$1 < $(INPUT) >$(OUTPUT) 2>&1; \ - CODE=$$?; \ - truncate -s $$(head -n 1000 $(OUTPUT) | wc -c) $(OUTPUT); \ - if [ $${CODE} -ge 124 ]; then \ - MSG=''; \ - case $${CODE} in \ - 124) MSG='TIMEOUT';; \ - 128) MSG='SIGILL';; \ - 130) MSG='SIGABRT';; \ - 131) MSG='SIGBUS';; \ - 136) MSG='SIGFPE';; \ - 135) MSG='SIGSEGV';; \ - 137) MSG='SIGPIPE';; \ - 139) MSG='SIGTERM';; \ - esac; \ - [ -n "$${MSG}" ] && printf '\n[code]: %s (%s)' "$${CODE}" "$${MSG}" >>$(OUTPUT); \ - else \ - printf '\n[code]: %s' $${CODE} >>$(OUTPUT); \ - fi -endef - -clean: - find . -type f -name "*.run" -o -name "*.debug" -o -name "*.su" | xargs rm -f - -setup: - test -f compile_flags.txt || cp $(TEMPLATE_DIR)/compile_flags.txt . - test -f .clangd || cp $(TEMPLATE_DIR)/.clangd . - test -f .clang-format || cp $(TEMPLATE_DIR)/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/1020/makefile b/codeforces/1020/makefile deleted file mode 100644 index 9c5450b..0000000 --- a/codeforces/1020/makefile +++ /dev/null @@ -1,28 +0,0 @@ -.PHONY: run debug clean setup init - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/1029/makefile b/codeforces/1029/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/1029/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/1032/makefile b/codeforces/1032/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/1032/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/1034/makefile b/codeforces/1034/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/1034/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/1037/makefile b/codeforces/1037/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/1037/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/1043/makefile b/codeforces/1043/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/1043/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/762/makefile b/codeforces/762/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/762/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/784/makefile b/codeforces/784/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/784/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/790/makefile b/codeforces/790/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/790/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/806/makefile b/codeforces/806/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/806/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/817/makefile b/codeforces/817/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/817/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/827/makefile b/codeforces/827/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/827/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/835/makefile b/codeforces/835/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/835/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/874/makefile b/codeforces/874/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/874/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/886/makefile b/codeforces/886/makefile deleted file mode 100644 index 78778b6..0000000 --- a/codeforces/886/makefile +++ /dev/null @@ -1,29 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/888/makefile b/codeforces/888/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/888/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/898/makefile b/codeforces/898/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/898/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/903/makefile b/codeforces/903/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/903/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/918/makefile b/codeforces/918/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/918/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/920/makefile b/codeforces/920/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/920/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/928/makefile b/codeforces/928/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/928/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/929/makefile b/codeforces/929/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/929/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/935/makefile b/codeforces/935/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/935/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/937/makefile b/codeforces/937/makefile deleted file mode 100644 index 9c5450b..0000000 --- a/codeforces/937/makefile +++ /dev/null @@ -1,28 +0,0 @@ -.PHONY: run debug clean setup init - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/944/makefile b/codeforces/944/makefile deleted file mode 100644 index e1e4b68..0000000 --- a/codeforces/944/makefile +++ /dev/null @@ -1,28 +0,0 @@ -.PHONY: run debug clean setup init - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/962/makefile b/codeforces/962/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/962/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/970/makefile b/codeforces/970/makefile deleted file mode 100644 index 9c5450b..0000000 --- a/codeforces/970/makefile +++ /dev/null @@ -1,28 +0,0 @@ -.PHONY: run debug clean setup init - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/981/makefile b/codeforces/981/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/981/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/993/makefile b/codeforces/993/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/993/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: diff --git a/codeforces/995/makefile b/codeforces/995/makefile deleted file mode 100644 index 9c5450b..0000000 --- a/codeforces/995/makefile +++ /dev/null @@ -1,28 +0,0 @@ -.PHONY: run debug clean setup init - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - -init: - make setup - -%: - @: diff --git a/codeforces/998/makefile b/codeforces/998/makefile deleted file mode 100644 index 3c50267..0000000 --- a/codeforces/998/makefile +++ /dev/null @@ -1,30 +0,0 @@ -.PHONY: run debug clean setup init - -VERSION ?= 20 - -SRC = $(word 2,$(MAKECMDGOALS)) - -.SILENT: - -run: - sh scripts/run.sh $(SRC) - -debug: - sh scripts/debug.sh $(SRC) - -clean: - rm -rf build/* - -setup: - test -d build || mkdir -p build - test -d io || mkdir -p io - test -d scripts || mkdir -p scripts - test -f .clang-format || cp $(HOME)/.config/cp-template/.clang-format . - test -f compile_flags.txt || cp $(HOME)/.config/cp-template/compile_flags.txt . && echo -std=c++$(VERSION) >>compile_flags.txt - test -f .clangd || cp $(HOME)/.config/cp-template/.clangd . && echo -e "\t\t-std=c++$(VERSION)" >>.clangd - -init: - make setup - -%: - @: