Codebase list gnome-shell-extension-appindicator / debian/33-2 Makefile
debian/33-2

Tree @debian/33-2 (Download .tar.gz)

Makefile @debian/33-2raw · history · blame

# simple helper makefile, handles schema compilation, translations and zip file creation

.PHONY= zip-file

# files that go into the zip
ZIP= $(wildcard *.js) metadata.json $(wildcard interfaces-xml/*)

zip-file: $(ZIP)
	mkdir -p build
	rm -f build/appindicator-support.zip
	zip build/appindicator-support.zip $(ZIP)

clean:
	rm -rf build