General Purpose library for Freestanding C++ and POSIX systems
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

10 wiersze
194 B

  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 $@