mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-07 15:51:32 +00:00
7 lines
137 B
Makefile
7 lines
137 B
Makefile
all:
|
|
$(CC) -no-pie test.c -o test
|
|
$(CC) -fPIC -shared read_into_rdi.c -o read_into_rdi.so
|
|
|
|
clean:
|
|
rm -rf in out test read_into_rdi.so
|