Source directory creating script for competitive programmers who are using c++ and neovim
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 строки
165 B

  1. CXX = g++
  2. CXXFLAGS = -Wall -Werror -std=c++14
  3. all: $(patsubst %.cpp, %.out, $(wildcard *.cpp))
  4. %.out: %.cpp Makefile
  5. $(CXX) $(CXXFLAGS) $< -o $@
  6. clean:
  7. rm *.out