mirror of
https://github.com/servo/servo.git
synced 2025-06-18 05:14:28 +00:00
14 lines
399 B
Makefile
14 lines
399 B
Makefile
.PHONY: all
|
|
all: openssl
|
|
@: # No-op to silence the "make: Nothing to be done for 'all'." message.
|
|
|
|
# From http://wiki.openssl.org/index.php/Android
|
|
.PHONY: openssl
|
|
openssl: openssl-1.0.1t/libssl.so
|
|
|
|
openssl-1.0.1t/libssl.so: openssl-1.0.1t/Configure
|
|
./openssl.sh ${ANDROID_NDK}
|
|
|
|
openssl-1.0.1t/Configure:
|
|
wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz
|
|
tar -zxf openssl-1.0.1t.tar.gz
|