mirror of
https://github.com/9001/copyparty.git
synced 2026-04-01 13:03:56 +10:00
in case a snakeoil salesman managed to convince your workplace into purchasing their "internet security solution" which blocks downloads of certain files according to file extensions -- or, in other words, smoke and mirrors, with a comforting false sense of security
14 lines
354 B
Makefile
14 lines
354 B
Makefile
# run me to zopfli all the static files
|
|
# which should help on really slow connections
|
|
# but then why are you using copyparty in the first place
|
|
|
|
pk: $(addsuffix .gz, $(wildcard tl/*.js *.js *.css) \
|
|
a/partyfuse.py a/u2c.py a/webdav-cfg.txt )
|
|
un: $(addsuffix .un, $(wildcard tl/*.gz *.gz a/*.gz))
|
|
|
|
%.gz: %
|
|
pigz -11 -J 34 -I 573 $<
|
|
|
|
%.un: %
|
|
pigz -d $<
|