Skip to content

Commit

Permalink
use max (9) Gzip compression
Browse files Browse the repository at this point in the history
not really useful for now
  • Loading branch information
lyonel committed Oct 25, 2021
1 parent 663869c commit 0f26b1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ MANDIR=$(PREFIX)/share/man
DATADIR=$(PREFIX)/share
INSTALL?=install -p
STRIP?=strip
GZIP?=gzip -9
export DESTDIR
export PREFIX
export SBINDIR
Expand Down Expand Up @@ -60,7 +61,7 @@ all: $(PACKAGENAME) $(PACKAGENAME).1 $(DATAFILES)
$(CXX) $(CXXFLAGS) -c $< -o $@

%.gz: %
gzip -c $< > $@
$(GZIP) -c $< > $@

.PHONY: core
core:
Expand Down

0 comments on commit 0f26b1b

Please sign in to comment.