Initial commit

This commit is contained in:
He4eT 2024-01-19 19:35:19 +01:00
commit bb4c82deac
6 changed files with 98 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
dist_dir = dist
filename = tabswitcher.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: