mirror of
https://github.com/JonathanSalwan/ROPgadget
synced 2026-06-08 11:25:23 +00:00
12 lines
188 B
Makefile
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
|