mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2026-01-25 17:16:11 +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
|