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.
|
#!/bin/sh
|
|
|
|
rm -f libkls_ttx.so
|
|
|
|
g++ -I. -I../include -Wall -O2 -fPIC -c fmt_codec_ttx.cpp
|
|
g++ -I. -I../include -Wall -O2 -fPIC -c ../kls_lib/fileio.cpp
|
|
g++ -Wall -shared fileio.o fmt_codec_ttx.o -o libkls_ttx.so
|
|
rm -f fmt_codec_ttx.o fileio.o |