mirror of
https://github.com/9001/copyparty.git
synced 2025-08-19 01:42:20 -06:00
13 lines
286 B
Makefile
13 lines
286 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 *.js *.css))
|
|
un: $(addsuffix .un, $(wildcard *.gz))
|
|
|
|
%.gz: %
|
|
pigz -11 -J 34 -I 573 $<
|
|
|
|
%.un: %
|
|
pigz -d $<
|