diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-04-18 20:30:17 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-04-18 20:30:17 +0200 |
commit | 279c9305b53a21f380e24cbd74b05e1e001686f8 (patch) | |
tree | 46b18c73d237d49d62a98e1410d19feb04b27867 /Makefile | |
parent | 337f2b31ae3b10acb02027d0c658dd55584a977e (diff) | |
download | userscripts-279c9305b53a21f380e24cbd74b05e1e001686f8.tar.gz userscripts-279c9305b53a21f380e24cbd74b05e1e001686f8.tar.bz2 userscripts-279c9305b53a21f380e24cbd74b05e1e001686f8.zip |
Add a makefile to generate greasemonkey bakup archive.
The generated zip file can be loaded by selecting "Import a backup" from
the GreaseMonkey menu. This will install/update both scripts in the archive.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d974190 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +all: userscripts.zip + +userscripts.zip: */*.js + zip -9ur $@ * |