8 lines
198 B
Makefile
8 lines
198 B
Makefile
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
|