# The directory where the base Makefile resides:
BASEDIR=
# List of subdirectories:
SUBDIRS:=$(shell list=`/bin/ls -1 -t | grep -v '^CVS$$'`; for i in $$list; do if test -d $$i; then echo $$i; fi; done)
# List of source files:
CSRC:=$(shell /bin/ls -1 -t -F *.c 2>/dev/null | grep '\.c$$')
CXXSRC:=$(shell /bin/ls -1 -t -F *$(CPPEXT) 2>/dev/null | grep '\$(CPPEXT)$$')
#-----------------------------------------------------------------------------
include $(PROTODIR)/sub/PTMakefile
#build::
#clean::
#depend::
syntax highlighted by Code2HTML, v. 0.9.1