Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae3967060148026c030f8637803a1c9a4e84c30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

all: build

init:
	# create dirs
	mkdir -p ./build

clear:
	# clear dirs
	rm -rf ./build

build: clear init
	# build
	go build -o ./build/x-ui ./cmd/x-ui/main.go