mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-12 11:26:25 +08:00
15 lines
310 B
Makefile
15 lines
310 B
Makefile
|
|
all:
|
|
cc -o ciphers -Wall ciphers.c -L/usr/local/lib -lcrypto
|
|
cc -o sm3 -Wall sm3.c -L/usr/local/lib -lcrypto
|
|
cc -o evpsm3 -Wall evpsm3.c -L/usr/local/lib -lcrypto
|
|
cc -o hmacsm3 -Wall hmacsm3.c -L/usr/local/lib -lcrypto
|
|
|
|
clean:
|
|
rm -fr a.out *.o
|
|
rm -fr ciphers
|
|
rm -fr sm3
|
|
rm -fr evpsm3
|
|
rm -fr hmacsm3
|
|
|