Skip to content

Instantly share code, notes, and snippets.

@autocracy
Created August 8, 2020 16:38
Show Gist options
  • Save autocracy/3fb82399515e2b68a4eb66fbd4b6a510 to your computer and use it in GitHub Desktop.
Save autocracy/3fb82399515e2b68a4eb66fbd4b6a510 to your computer and use it in GitHub Desktop.
SRCS := $(wildcard *.gz)
OBJS := $(patsubst %.gz,%.zst,$(SRCS))
zstd: $(OBJS)
%.zst: %.gz
gunzip -c $< | zstd -9 -q -o $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment