mirror of
https://github.com/sonertari/SSLproxy
synced 2024-11-08 07:10:26 +00:00
8 lines
136 B
Makefile
8 lines
136 B
Makefile
|
all: snoop-nss-verify.so
|
||
|
|
||
|
snoop-nss-verify.so: snoop-nss-verify.c
|
||
|
$(CC) -shared -fPIC -o $@ $< -ldl
|
||
|
|
||
|
clean:
|
||
|
rm -f snoop-nss-verify.so
|