General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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