summaryrefslogtreecommitdiff
path: root/Makefile
blob: b34acee261198cf280c523b8b420ca5d22eb2455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2019 Simon McVittie
# SPDX-License-Identifier: GPL-2.0-or-later
# (see extension.js for details)

all:
	glib-compile-schemas --strict --targetdir=schemas schemas

dist: all
	zip gnome-bluetooth-quick-connect.zip -9r *

clean:
	rm -fr gnome-bluetooth-quick-connect.zip schemas/gschemas.compiled

.PHONY: all clean dist