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.
 
 

11 wiersze
194 B

CXX= clang++
CXXFLAGS= --std=c++2a
all: tests
tests: bin/tests
./bin/tests
bin/tests: tests.cpp $(wildcard tests/*.cpp)
@mkdir -p $(@D)
$(CXX) $(CXXFLAGS) -Itests -Iinclude tests.cpp -o $@