mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-06 16:36:16 +08:00
10 lines
196 B
Makefile
10 lines
196 B
Makefile
all:
|
|
cc sm3_demo.c -lgmssl -o sm3_demo
|
|
cc sm3_hmac_demo.c -lgmssl -o sm3_hmac_demo
|
|
cc sm3_kdf_demo.c -lgmssl -o sm3_kdf_demo
|
|
clean:
|
|
rm -fr sm3_demo
|
|
rm -fr sm3_hmac_demo
|
|
rm -fr sm3_kdf_demo
|
|
|