extpython/ssl/trusty/Makefile

18 lines
284 B
Makefile
Raw Normal View History

2021-06-12 10:08:56 -07:00
#!/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