5 lines
205 B
Makefile
5 lines
205 B
Makefile
CXX=clang++
|
|
test: SharedPtr_test.cpp SharedPtr.hpp
|
|
$(CXX) SharedPtr_test.cpp -Wall -fsanitize=address -g -o test
|
|
test_gdb: SharedPtr_test.cpp SharedPtr.hpp
|
|
$(CXX) SharedPtr_test.cpp -Wall -g -o test_gdb
|