mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
10 lines
165 B
Makefile
10 lines
165 B
Makefile
# ip2region golang binding makefile
|
|
all: build
|
|
.PHONY: all
|
|
|
|
build:
|
|
go build -o xdb_searcher
|
|
test:
|
|
go test -v ./...
|
|
clean:
|
|
find ./ -name xdb_searcher | xargs rm -f
|