mirror of
https://github.com/He4eT/tabswitcher.git
synced 2026-05-05 01:17:23 +00:00
14 lines
276 B
Makefile
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:
|