It is my own C++ stdlib
make compile
# creates build/libstdc++2.so and build/libstdc++2.aThis is one of the rare occasions when I wrote tests
make test-all # run all test
# For solo test:
make test TEST=(test-name)
# as I will assume tested file is in tests/ folder with .c extensionmake run your-file.c # run for linked with shared library
make run-static your-file.c # run-static for linked with static library