See Manuals for more information
A simple mechanism is provided for doing all the configuration needed to build a executable program which uses the speech tools library.
First, make a directory which will hold your program. To make a program called "do_stuff", type
est_program do_stuff
if you haven't got the EST bin directory in your path you will have to add the path explicitly, e.g.
speech_tools/bin/est_program do_stuff
This will create a Makefile and a .cc file called do_stuff_main.cc, which will look something like this:
You can now add any C++ code to this, and compile by typing make.
If you want to create a second program in the same directory, type the same again:
speech_tools/bin/est_program do_more_stuff
This time, do_more_stuff_main.cc will be created and the appropriate build commands added to the extisting Makefile. If you wish to add an extra .cc file to particular program, simply edit the Makefile and add it on the line:
do_stuff_CXXSRC= do_stuff.cc extra.cc