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