General Purpose library for Freestanding C++ and POSIX systems
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

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