Initial working state

This commit is contained in:
2018-10-23 23:19:50 -07:00
commit cbdd1e3231
14 changed files with 550 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
#
# 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)