diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..13cbc57 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.xpi +*.zip diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..49b499b --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +FILENAME=free-haaretz + +package: + zip -r $(FILENAME).zip * + cp $(FILENAME).zip $(FILENAME)-unsigned.xpi + +clean: + rm -f $(FILENAME).zip + rm -f $(FILENAME)-unsigned.xpi |
