# Directory where the base Makefile resides, or '.' when
# you don't use a base Makefile:
BASEDIR=

# Name of executable to be produced:
MAIN=

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

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

# Extra static libraries to link with:
STATICLIBS=

# Extra shared libraries to link with:
SHAREDLIBS=

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

# Extra *.o files that need to be linked:
EXTRA_OBJS=

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

include ${PROTODIR}/main/PTMakefile

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