exploit: exploit.c
	$(CC) -O3 -ggdb -static -Wall -lpthread -o $@ $^

real_exploit: exploit.c
	$(CC) -O3 -ggdb -static -Wall -lpthread -DKASLR_BYPASS_INTEL=1 -o exploit $^

original: exploit-orig.c
	$(CC) -O3 -ggdb -static -Wall -lpthread -o exploit $^

clean:
	rm exploit
