General Purpose library for Freestanding C++ and POSIX systems
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 строки
194 B

5 лет назад
  1. CXX= clang++
  2. CXXFLAGS= --std=c++2a
  3. all: tests
  4. tests: bin/tests
  5. ./bin/tests
  6. bin/tests: tests.cpp $(wildcard tests/*.cpp)
  7. @mkdir -p $(@D)
  8. $(CXX) $(CXXFLAGS) -Itests -Iinclude tests.cpp -o $@