BAN-AI-Communications/k95-mingw

View on GitHub
openssl-0.9.7/shlib/irix.sh

Summary

Maintainability
Test Coverage
Tips depend on target shell and yours is unknown. Add a shebang.
FLAGS="-DTERMIOS -O2 -mips2 -DB_ENDIAN -fomit-frame-pointer -Wall -Iinclude"
SHFLAGS="-DPIC -fpic"
 
Double quote to prevent globbing and word splitting.
gcc -c -Icrypto $SHFLAGS $FLAGS -o crypto.o crypto/crypto.c
ld -shared -o libcrypto.so crypto.o
Double quote to prevent globbing and word splitting.
gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c
ld -shared -o libssl.so ssl.o