17 lines
200 B
Makefile
17 lines
200 B
Makefile
|
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
|
||
|
|
||
|
|
||
|
|