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.
|
FLAGS="-DTERMIO -O3 -DB_ENDIAN -fomit-frame-pointer -mv8 -Wall -Iinclude"
|
|
SHFLAGS="-DPIC -fpic"
|
|
|
|
gcc -c -Icrypto $SHFLAGS -fpic $FLAGS -o crypto.o crypto/crypto.c
|
|
ld -G -z text -o libcrypto.so crypto.o
|
|
|
|
gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c
|
|
ld -G -z text -o libssl.so ssl.o
|
|
|