Files
cpp-example-wrappers/Makefile
T
2025-07-28 19:49:21 +07:00

16 lines
243 B
Makefile

run: all
./raw_ptr
./smart_ptr
./smart_ptr_iterable
all: raw_ptr smart_ptr smart_ptr_iterable
raw_ptr: raw_ptr.cc
smart_ptr: smart_ptr.cc
smart_ptr_iterable: smart_ptr_iterable.cc
clean:
rm -f *.o raw_ptr smart_ptr smart_ptr_iterable