#=============================================================================
# Template instantiation generation
# You must append this file after the 'include ${PROTODIR}/test/PTMakefile'
# in the real Makefile.

# APPDIR should be the directory of the application that needs to be analysed.
# It must contain a Makefile with the target `build'.
APPDIR=.

# List of object files of the application. Undefined references of template
# functions or classes in these object files will be instantiated.
# [ Note: This variable is ignored in test directories and replaced by
#   <executable>.o for each executable in the test directory. ]
APPDIR_OBJS:=$(shell find ${APPDIR} -mindepth 1 -maxdepth 1 -name '*.cc' | sed 's/.cc/.o/g')

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

include ${PROTODIR}/templ-inst/PTMakefile
