mirror of
https://github.com/aler9/gortsplib
synced 2025-09-26 19:21:20 +08:00
25 lines
479 B
Makefile
25 lines
479 B
Makefile
BASE_IMAGE = golang:1.25-alpine3.22
|
|
LINT_IMAGE = golangci/golangci-lint:v2.5.0
|
|
|
|
.PHONY: $(shell ls)
|
|
|
|
help:
|
|
@echo "usage: make [action]"
|
|
@echo ""
|
|
@echo "available actions:"
|
|
@echo ""
|
|
@echo " format format source files"
|
|
@echo " test run tests"
|
|
@echo " test-32 run tests on a 32-bit system"
|
|
@echo " test-e2e run end-to-end tests"
|
|
@echo " lint run linter"
|
|
@echo ""
|
|
|
|
blank :=
|
|
define NL
|
|
|
|
$(blank)
|
|
endef
|
|
|
|
include scripts/*.mk
|