Home | History | Annotate | Download | only in programs

Lines Matching refs:lz4

2 # LZ4 programs - Makefile
24 # - LZ4 homepage : http://www.lz4.org
25 # - LZ4 source repository : https://github.com/Cyan4973/lz4
27 # lz4 : Command Line Utility, supporting gzip-like arguments
34 LIBVER_SRC := $(LZ4DIR)/lz4.h
57 MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="lz4 $(LZ4_VERSION)"
71 default: lz4-release
73 all: lz4 lz4c
78 lz4: $(OBJFILES)
81 lz4-release: DEBUGFLAGS=
82 lz4-release: lz4
84 lz4c: lz4
85 ln -s lz4$(EXT) lz4c$(EXT)
91 lz4.1: lz4.1.md $(LIBVER_SRC)
94 man: lz4.1
97 rm lz4.1
100 man ./lz4.1
105 lz4$(EXT) lz4c$(EXT) lz4c32$(EXT) unlz4$(EXT) lz4cat$(EXT)
114 unlz4: lz4
115 ln -s lz4$(EXT) unlz4$(EXT)
117 lz4cat: lz4
118 ln -s lz4$(EXT) lz4cat$(EXT)
147 install: lz4
150 @$(INSTALL_PROGRAM) lz4$(EXT) $(DESTDIR)$(bindir)/lz4$(EXT)
151 @ln -sf lz4$(EXT) $(DESTDIR)$(bindir)/lz4c$(EXT)
152 @ln -sf lz4$(EXT) $(DESTDIR)$(bindir)/lz4cat$(EXT)
153 @ln -sf lz4$(EXT) $(DESTDIR)$(bindir)/unlz4$(EXT)
155 @$(INSTALL_DATA) lz4.1 $(DESTDIR)$(man1dir)/lz4.1
156 @ln -sf lz4.1 $(DESTDIR)$(man1dir)/lz4c.1
157 @ln -sf lz4.1 $(DESTDIR)$(man1dir)/lz4cat.1
158 @ln -sf lz4.1 $(DESTDIR)$(man1dir)/unlz4.1
159 @echo lz4 installation completed
164 @$(RM) $(DESTDIR)$(bindir)/lz4$(EXT)
166 @$(RM) $(DESTDIR)$(man1dir)/lz4.1
170 @echo lz4 programs successfully uninstalled