Files
JonathanSalwan-ROPgadget/binary-test/Makefile
T
2013-01-05 17:46:00 -05:00

12 lines
188 B
Makefile

all: nullable shared
nullable: nullable.c
gcc -m64 -g -o $@ $< -static -fno-stack-protector
shared: main_linux.c
gcc -m32 -o $@ $< -fno-stack-protector
clean:
rm -f nullable shared