repo/curl/Makefile

12 lines
230 B
Makefile
Raw Normal View History

2021-06-30 00:40:13 +03:00
prepare:
wget -O curl.tar.gz https://curl.se/download/curl-7.77.0.tar.gz
tar -xf curl.tar.gz
cd curl
make:
2021-06-30 00:59:16 +03:00
@./configure --prefix=/usr --with-openssl
2021-06-30 00:40:13 +03:00
make
install:
make install DESTDIR="${PREFIX}"
uninstall:
make uninstall