33 lines
728 B
Makefile
33 lines
728 B
Makefile
NAME=ble-unlock
|
|
DOMAIN=blelock.github.io
|
|
UUID=$(NAME)@$(DOMAIN)
|
|
|
|
.PHONY: all pack install clean test
|
|
|
|
all: dist/extension.js
|
|
|
|
node_modules/.package-lock.json: package.json
|
|
npm install
|
|
|
|
dist/extension.js dist/prefs.js: node_modules/.package-lock.json *.ts
|
|
npm run build
|
|
|
|
schemas/gschemas.compiled: schemas/org.gnome.shell.extensions.bleunlock.gschema.xml
|
|
glib-compile-schemas schemas
|
|
|
|
$(NAME).zip: dist/extension.js dist/prefs.js schemas/gschemas.compiled
|
|
@cp -r schemas dist/
|
|
@cp metadata.json dist/
|
|
@(cd dist && zip ../$(NAME).zip -9r .)
|
|
|
|
pack: $(NAME).zip
|
|
|
|
install: $(NAME).zip
|
|
gnome-extensions install --force $(NAME).zip
|
|
|
|
clean:
|
|
@rm -rf dist node_modules $(NAME).zip
|
|
|
|
test: node_modules/.package-lock.json
|
|
npm test
|