General Purpose library for Freestanding C++ and POSIX systems
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

11 řádky
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 $@