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

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

Makefile @debian/33-2

ad2df5d
 
33fcc8e
ad2df5d
cdaad01
33fcc8e
ad2df5d
33fcc8e
ad2df5d
 
33fcc8e
cdaad01
 
 
# 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