# Directory where the base Makefile resides:
BASEDIR=

# Library name, for example: "LIB=foo" -> libfoo.so and libfoo.a
# The version of the library is read from .$(LIB).version (which is
# automatically incremented 1 Minor Version every time you (re)install.
LIB=

# 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)$$')

# Library specific include flags, for example: -I$(BASEDIR)/include or -I.
INCLUDEFLAGS=

# Extra static libraries to link with:
STATICLIBS=

# Extra shared libraries to link with:
SHAREDLIBS=

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

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

include $(PROTODIR)/lib/PTMakefile

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