mirror of
https://github.com/JonathanSalwan/ROPgadget
synced 2026-06-08 11:25:23 +00:00
16 lines
293 B
Makefile
16 lines
293 B
Makefile
OBJS = nullable shared win32-shared
|
|
|
|
all: $(OBJS)
|
|
|
|
nullable: nullable.c
|
|
gcc -m64 -g -o $@ $< -static -fno-stack-protector
|
|
|
|
shared: main_linux.c
|
|
gcc -m32 -o $@ $< -fno-stack-protector
|
|
|
|
win32-shared: main_linux.c
|
|
i586-mingw32msvc-gcc -m32 -o $@ $< -fno-stack-protector
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|