#=============================================================================
# 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 /bin/ls -1 -t -F *$(CPPEXT) 2>/dev/null | grep '\$(CPPEXT)$$' | sed 's/\$(CPPEXT)$$/.o/g')

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

include $(PROTODIR)/templ-inst/PTMakefile
