repo/curl/Makefile
2021-06-30 00:59:16 +03:00

11 lines
230 B
Makefile

prepare:
wget -O curl.tar.gz https://curl.se/download/curl-7.77.0.tar.gz
tar -xf curl.tar.gz
cd curl
make:
@./configure --prefix=/usr --with-openssl
make
install:
make install DESTDIR="${PREFIX}"
uninstall:
make uninstall