1.将main.c编译成.o文件: gcc -c hello.c
2.由.o文件创建静态库 ar cr libmymath.a add.c sub.c mul.c div.c
3.运行 gcc -o hello main.c -L. -lmymath