gostrings/Makefile
2025-11-30 17:56:18 -05:00

7 lines
182 B
Makefile

CXXFLAGS:=-std=c++23 -Wall -Wextra -pthread -g
gostrings_test: gostrings.hpp
$(CXX) $(CXXFLAGS) -o gostrings_test gostrings_test.cpp -lpthread -lgtest
clean:
rm -f gostrings_test