Skip to content

Commit be5bb9d

Browse files
author
user
committedJul 31, 2021
Add Makefile
1 parent 63fa356 commit be5bb9d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
 

‎Makefile

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
APP=RTSPtoWeb
2+
SERVER_FLAGS ?= -config config.json
3+
4+
P="\\033[34m[+]\\033[0m"
5+
6+
build:
7+
@echo "$(P) build"
8+
GO111MODULE=on go build *.go
9+
10+
run:
11+
@echo "$(P) run"
12+
GO111MODULE=on go run *.go
13+
14+
serve:
15+
@$(MAKE) server
16+
17+
server:
18+
@echo "$(P) server $(SERVER_FLAGS)"
19+
./${APP} $(SERVER_FLAGS)
20+
21+
test:
22+
@echo "$(P) test"
23+
bash test.curl
24+
bash test_multi.curl
25+
26+
lint:
27+
@echo "$(P) lint"
28+
go vet
29+
30+
.NOTPARALLEL:
31+
32+
.PHONY: build run server test lint

0 commit comments

Comments
 (0)
Please sign in to comment.