diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e7cf657 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +dist_dir = dist +filename = tabswiper.xpi + +cleanup: + rm -rf ${dist_dir} + +package: cleanup + mkdir ${dist_dir} + zip -r -FS ./${dist_dir}/${filename} * \ + --exclude './dist/*' \ + --exclude './screenshots/*' \ + --exclude '*.git*' + +# vim: set ts=4 sw=4 autoindent noexpandtab: