Merge branch 'master' of github.com:lionsoul2014/ip2region

This commit is contained in:
Lion 2022-07-02 18:00:14 +08:00
commit 40a3192445
1 changed files with 18 additions and 0 deletions

18
maker/golang/make.bat Normal file
View File

@ -0,0 +1,18 @@
::ip2region golang maker makefile in windows
@echo off
if [%1] == [] goto:build
if %1==clean (
call:clean
) else if %1==build (
call:build
)
exit /b 0
:build
go build -o xdb_maker.exe
exit /b 0
:clean
del/f/s/q xdb_maker.exe