mirror of
https://github.com/aler9/gortsplib
synced 2025-10-05 07:06:58 +08:00
27 lines
565 B
Makefile
27 lines
565 B
Makefile
BASE_IMAGE = golang:1.20-alpine3.18
|
|
LINT_IMAGE = golangci/golangci-lint:v1.53.3
|
|
|
|
.PHONY: $(shell ls)
|
|
|
|
help:
|
|
@echo "usage: make [action]"
|
|
@echo ""
|
|
@echo "available actions:"
|
|
@echo ""
|
|
@echo " mod-tidy run go mod tidy"
|
|
@echo " format format source files"
|
|
@echo " test run tests"
|
|
@echo " test32 run tests on a 32-bit system"
|
|
@echo " test-highlevel run high-level tests"
|
|
@echo " lint run linter"
|
|
@echo " bench run benchmarks"
|
|
@echo ""
|
|
|
|
blank :=
|
|
define NL
|
|
|
|
$(blank)
|
|
endef
|
|
|
|
include scripts/*.mk
|