mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 08:56:17 +08:00
7 lines
128 B
Makefile
7 lines
128 B
Makefile
all:
|
|
gcc -c -Wall -Werror -fpic skf_dummy.c
|
|
gcc -shared -o libskf_dummy.so skf_dummy.o
|
|
clean:
|
|
rm -fr *.o *.so *.dylib *.lib
|
|
|