Files
JonathanSalwan-ROPgadget/binary-test/Makefile
T
2013-01-11 15:57:27 -05:00

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)