repo/xztools/Makefile

17 lines
200 B
Makefile
Raw Normal View History

2021-06-29 21:49:46 +03:00
prepare:
PREFIX = $(prefix/)
git clone https://git.tukaani.org/xz.git
cd xz
make:
./configure \
--prefix=PREFIX \
--disable-nls
make
install:
make install
uninstall:
make uninstall