# Directory where the base Makefile resides, or '.' when
# you don't use a base Makefile:
BASEDIR=..

# Name of executable to be produced:
MAIN=cflow2cflow

# 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 *.cc 2>/dev/null | grep '\.cc$$')

# Executable specific include flags, for example: -Iinclude
INCLUDEFLAGS=

# Extra static libraries to link with:
STATICLIBS=

# Extra shared libraries to link with:
SHAREDLIBS=-lcflow # -lcwd

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

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

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

include $(PROTODIR)/main/PTMakefile

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

#CXXFLAGS+=-DCWDEBUG
