extpython/ssl/trusty/Makefile

18 lines
284 B
Makefile

#!/usr/bin/make -f
all:
cd openssl && \
./config --prefix=/opt/extpython/ssl/1.1.1k --openssldir=/opt/extpython/ssl/1.1.1k shared zlib && \
make -j8
#&& \
#echo "testing...." && \
#make test
install:
cd openssl && \
make install
clean:
cd openssl && \
make clean || true