none:
	gcc -Wall -ggdb -o vuln vuln.c
	gcc -Wall -ggdb -o sploit sploit.c
	@echo -e "\ntype \"./sploit\" to see if it works :)"

clean:
	rm -f *.o vuln sploit
