You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
274 B
8 lines
274 B
14 years ago
|
FLAGS="-DTERMIOS -O2 -mips2 -DB_ENDIAN -fomit-frame-pointer -Wall -Iinclude"
|
||
|
SHFLAGS="-DPIC -fpic"
|
||
|
|
||
|
gcc -c -Icrypto $SHFLAGS $FLAGS -o crypto.o crypto/crypto.c
|
||
|
ld -shared -o libcrypto.so crypto.o
|
||
|
gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c
|
||
|
ld -shared -o libssl.so ssl.o
|