Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CC=afl-gcc
- CFLAGS=-fno-stack-protector -z execstack -fsyntax-only
- DEPS=
- OBJ=vuln1.o
- %.o: %.c $(DEPS)
- $(CC) -c -o $@ $< $(CFLAGS)
- vuln1: $(OBJ)
- gcc -o $@ $^ $(CFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement