blob: 2ae57924763b8d6165f6778ef1b136323ef4bdaa (
plain)
1
2
3
4
5
6
7
|
all:
gcc -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread
debug:
gcc -g -fPIC -shared src/http_check.c -o http_check.so -levent -lcjson -lpthread
clean:
rm *.so *.o -rf
|