You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
272 B
17 lines
272 B
all: shellcode test serverbuf exploit
|
|
|
|
shellcode: shellcode.S shellcode.c
|
|
gcc -Wall -m32 -o $@ $^
|
|
|
|
test: test.c
|
|
gcc -Wall -g -m32 -o $@ $^
|
|
|
|
serverbuf: serverbuf.c
|
|
gcc -Wall -g -m32 -o $@ $^
|
|
|
|
exploit: exploit.c
|
|
gcc -Wall -g -m32 -o $@ $^
|
|
|
|
clean:
|
|
rm -f shellcode test
|
|
|
|
|