
all: hello_cpp.so

%.o: %.cc
	g++ -Wall -fPIC -c $^ -o $@

%.so: %.o
	g++ -fPIC -shared $^ -o lib$@

clean:
	rm -rf *~ *.so *.o 
