1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# SPDX-FileCopyrightText: Mikhail Zolotukhin <mail@gikari.com>
# SPDX-License-Identifier: MIT
MAKEFLAGS += --always-make
all: build
clean:
scripts/clean.sh
build:
scripts/build.sh
sysdep-install:
scripts/sysdep-install.sh
install: build
scripts/install.sh
uninstall:
scripts/uninstall.sh
restart-kwin-x11:
kwin_x11 --replace & disown
restart-plasma:
plasmashell --replace & disown
docs:
npx typedoc --out build/docs
test:
scripts/test.sh
setup-dev-env: sysdep-install
pre-commit install
npm install # Install development dependencies
|