mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
17 lines
500 B
Makefile
17 lines
500 B
Makefile
LuaVersion = 5.4
|
|
LIB_DIR = /usr/local/share/lua/$(LuaVersion)
|
|
|
|
all: ../c/xdb_api.h ../c/xdb_util.c ../c/xdb_searcher.c xdb_searcher.c
|
|
gcc -Wall -O2 -I../c/ -I/usr/include/lua$(LuaVersion) ../c/xdb_util.c ../c/xdb_searcher.c xdb_searcher.c -fPIC -shared -o xdb_searcher.so
|
|
|
|
install:
|
|
sudo mkdir -p $(LIB_DIR); \
|
|
sudo cp xdb_searcher.so $(LIB_DIR);\
|
|
echo "install xdb searcher to $(LIB_DIR) successfully.";\
|
|
|
|
clean:
|
|
find . -name \*.so | xargs rm -f
|
|
find . -name \*.o | xargs rm -f
|
|
|
|
.PHONY: clean
|