b79da9a7c8
Makefile: Add a simple Makefile that allows to lint CI scripts and build artifacts using .gitlab/ci/build_releng.sh.
14 lines
190 B
Makefile
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
|