extpython/ssl/trusty/Makefile

18 lines
284 B
Makefile
Raw Permalink Normal View History

2021-06-12 10:08:56 -07:00
#!/usr/bin/make -f
all:
cd openssl && \
2023-08-21 20:18:11 -07:00
./config --prefix=/opt/extpython/ssl/1.1.1l --openssldir=/opt/extpython/ssl/1.1.1l shared zlib && \
2021-06-12 10:08:56 -07:00
make -j8
#&& \
#echo "testing...." && \
#make test
install:
cd openssl && \
make install
clean:
cd openssl && \
make clean || true