diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-28 16:00:19 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-28 16:00:19 +0200 |
commit | f7bbd467b53d0ee7c3ca366750ed1fa60972981c (patch) | |
tree | 4d88faf7537e51aab48496f916fcf93fd0cb576d /custom_mutators/custom_send_tcp/Makefile | |
parent | 8993ba430545b867da11e119be15126de43d061c (diff) | |
download | afl++-f7bbd467b53d0ee7c3ca366750ed1fa60972981c.tar.gz |
add custom_send_tcp
Diffstat (limited to 'custom_mutators/custom_send_tcp/Makefile')
-rw-r--r-- | custom_mutators/custom_send_tcp/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/custom_mutators/custom_send_tcp/Makefile b/custom_mutators/custom_send_tcp/Makefile new file mode 100644 index 00000000..8549ccad --- /dev/null +++ b/custom_mutators/custom_send_tcp/Makefile @@ -0,0 +1,7 @@ +all: custom_send_tcp.so + +custom_send_tcp.so: + $(CC) -Wno-unused-result -g -O3 -shared -fPIC -o custom_send_tcp.so -I../../include custom_send_tcp.c + +clean: + rm -f custom_send_tcp.so *.o *~ core |