tabswitcher/Makefile
2024-01-19 19:35:19 +01:00

14 lines
276 B
Makefile

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: