all:
	g++ -g -Og -c -o test_lib_v1.o test_lib_v1.cpp
	g++ -g -Og -c -o test_lib_v2.o test_lib_v2.cpp
	gcc -shared -o test_lib_v1.so test_lib_v1.o
	gcc -shared -o test_lib_v2.so test_lib_v2.o
	abi-dumper test_lib_v1.so -lambda -o test_lib_v1.abi.dump -lver 1
	abi-dumper test_lib_v2.so -lambda -o test_lib_v2.abi.dump -lver 2