Initial working state
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal 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)
|
Reference in New Issue
Block a user