# Directory where the base Makefile resides:
BASEDIR=

# Library name, for example: "LIB=foo" -> libfoo.so and libfoo.a
# The version of the library is read from .$(LIB).version (which is
# automatically boosted 1 Minor Version every time you (re)install.
LIB=

# List of subdirectories:
SUBDIRS:=$(shell find . -maxdepth 1 -mindepth 1 -type d ! -name CVS)

# List of source files:
SRC:=$(shell ls *.cc)
#or
#SRC:=$(shell find . -maxdepth 1 -mindepth 1 -type f -name '*.cc' -printf '%f\n')

# Include flags. For example: "-Ifoo -Ibar", where 'foo' and 'bar'
# will be interpreted relative to the BASEDIR!
INCLUDEFLAGS=

# Extra static libraries to link with:
STATICLIBS=

#-----------------------------------------------------------------------------

include ${PROTODIR}/lib/PTMakefile

#clean::
#depend::
#build::
