# Directory where the base Makefile resides:
BASEDIR=

# List of source files (one per executable):
SRC:=$(shell grep -l 'main *(' *.cc)

# 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=

# Put here extra -L... flags
LIBFLAGS=

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

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

include ${PROTODIR}/test/PTMakefile

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