18 lines
257 B
Makefile
18 lines
257 B
Makefile
SRCS = $(wildcard *.html *.xml *.txt *.css *.map *.pdf)
|
|
|
|
ZSTD = $(patsubst %,%.zst,$(SRCS))
|
|
BR = $(patsubst %,%.br,$(SRCS))
|
|
GZ = $(patsubst %,%.gz,$(SRCS))
|
|
|
|
.PHONY: all
|
|
all: $(ZSTD) $(BR) $(GZ)
|
|
|
|
%.br: %
|
|
brotli $<
|
|
|
|
%.zst: %
|
|
zstd -19 $<
|
|
|
|
%.gz: %
|
|
zopfli $<
|