summaryrefslogtreecommitdiffstats
path: root/doc/sources/ttx/compile-c++
blob: 86d3acb1a1a4c48b4bbf70b15921c0e2ecadcc48 (plain)
1
2
3
4
5
6
7
8
#!/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