Add Makefile

This commit is contained in:
He4eT 2023-10-15 00:52:38 +03:00
commit ba722f3856

14
Makefile Normal file
View file

@ -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: