emptyem-webex/Makefile

18 lines
313 B
Makefile
Raw Permalink Normal View History

2018-10-24 06:19:50 +00:00
#
# Build extension package
#
VERSION = 2.0
SOURCES = manifest.json data/* icons/*
PACKAGE = ../emptyem-$(VERSION).xpi
EXCLUDES = Makefile README.md *.DS_Store
build: $(PACKAGE)
@echo "Done"
$(PACKAGE): $(SOURCES)
zip -r -FS $(PACKAGE) * -x $(EXCLUDES)
@echo "Built $(PACKAGE)"
clean:
rm $(PACKAGE)