bismuth/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
639 B
Makefile
Raw Normal View History

# SPDX-FileCopyrightText: Mikhail Zolotukhin <mail@gikari.com>
# SPDX-License-Identifier: MIT
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
.PHONY: clean build sysdep-install install uninstall restart-kwin-x11 restart-plasma docs test setup-dev-env