add iterable

This commit is contained in:
2025-07-28 17:03:05 +07:00
parent 765bfc3502
commit 40557c03b4
7 changed files with 199 additions and 23 deletions
+12 -5
View File
@@ -1,8 +1,15 @@
run: wrappers
./wrappers
run: all
./raw_ptr
./smart_ptr
./smart_ptr_iterable
wrappers: main.c
g++ -Wall -o wrappers main.c
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 wrappers
rm -f *.o raw_ptr smart_ptr smart_ptr_iterable