This README file explains how to run the recipes.
----------------------------------------------------

** To compile all the recipes
make install (from top directory, where this README file is located)

** To execute the recipes
esopipe -h						-> HELP
esopipe --recipes				-> list all recipes available
esopipe --params recipe_name	-> list parameters for the recipe
esopipe recipe_name				-> execute recipe with default parameters

esopipe recipe_name --par1=value1... data.sof 

*******>> data.sof is the frameset called from the function

---------------------------------------------------------------
** To create a new recipe file (.c file):
1) add it to the "" Makefile.am "" in the recipes directory in the following lines:

plugin_LTLIBRARIES

2) Create a block of the following lines for each new recipe file:

omega_test_la_SOURCES = omega_test.c

omega_test_la_LIBADD = $(LIBOMEGA)
omega_test_la_LDFLAGS = -module -avoid-version
omega_test_la_DEPENDENCIES = $(LIBOMEGA)

3) For a new header file in directory omega/, add it in Makefile.am

pkginclude_HEADERS
   and if pertinent, also in
libomega_la_SOURCES

4) Recompile
./bootstrap
./configure --prefix=$PIPE/omegadev --with-cpl=$CPLDIR
make install

NOTE:
======
To link functions from the cpldrs directory, the following needs to be added in the
Makefile.am of the directory where the recipe is present (either recipes/ or omega/)

libomega_la_LIBADD = .... -lcpldrs 




