releng/Makefile
David Runge b79da9a7c8
Add simple Makefile for lint and build jobs
Makefile:
Add a simple Makefile that allows to lint CI scripts and build artifacts using .gitlab/ci/build_releng.sh.
2021-05-15 12:45:42 +02:00

14 lines
190 B
Makefile

#
# SPDX-License-Identifier: GPL-3.0-or-later
all: build
check: lint
lint:
shellcheck -s bash $(wildcard .gitlab/ci/*.sh)
build:
./.gitlab/ci/build_releng.sh
.PHONY: build check lint