17 lines
388 B
Makefile
17 lines
388 B
Makefile
INSTALL_DIR := ~/.local/share/cockpit/image-builder-frontend
|
|
|
|
cockpit/all: devel-uninstall devel-install build
|
|
|
|
devel-install:
|
|
mkdir -p ~/.local/share/cockpit
|
|
ln -s $(shell pwd)/cockpit/public $(INSTALL_DIR)
|
|
|
|
build:
|
|
npm run build:cockpit
|
|
|
|
devel-uninstall:
|
|
rm -rf $(INSTALL_DIR)
|
|
rm cockpit/public/*.css
|
|
rm cockpit/public/*.js
|
|
|
|
.PHONY: cockpit/all devel-install build devel-uninstall
|