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
2019-12-30 12:41:28 +08:00

8 lines
178 B
Makefile

all:
gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson
debug:
gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson
clean:
rm *.so *.o -rf