all: compile

compile: allocator.c
	gcc -g -Wall -fPIC -shared allocator.c -o libmyalloc.so

tar:
	tar cvzf project3.tgz README Makefile allocator.c

untar:
	tar xvzf project3.tgz

clean:
	rm -rf *.so
	