mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
14 lines
201 B
Makefile
14 lines
201 B
Makefile
|
|
.PHONY: all clean install
|
|
|
|
all:
|
|
gcc -shared -Wall main.c PluginObject.c GmSSLObject.c -lcrypto -ldl -o libgmssl.so
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *.so
|
|
|
|
install:
|
|
cp libgmssl.so /usr/lib/mozilla/plugins/
|
|
|