# 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 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)$$')
# Executable specific include flags, for example: -Iinclude
INCLUDEFLAGS=
# 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)/main/PTMakefile
#build::
#clean::
#depend::
syntax highlighted by Code2HTML, v. 0.9.1