# Directory where the base Makefile resides:
BASEDIR=
# List of source files (one per executable):
CSRC:=${shell grep -l 'main *(' *.c 2> /dev/null}
CXXSRC:=${shell grep -l 'main *(' *$(CPPEXT) 2> /dev/null}
# List of subdirectories:
SUBDIRS:=$(shell /bin/ls -1 -t -F | grep '/$$' | egrep -v '^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::
syntax highlighted by Code2HTML, v. 0.9.1