This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
yzc-http-check/http_check/Makefile

8 lines
198 B
Makefile
Raw Normal View History

2019-12-30 12:41:28 +08:00
all:
2019-12-31 11:23:26 +08:00
gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread
2019-12-30 12:41:28 +08:00
debug:
2019-12-31 11:23:26 +08:00
gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread
2019-12-30 12:41:28 +08:00
clean:
rm *.so *.o -rf