?prevdifflink? - Blame
###############################################################################
#
# Generic rule to create a parsing table from a .def SDF definition file
#
# This makefile requires two global variables
# SDF2TABLE - Program configuration of "sdf2table"
# (in makerules.configuration)
# SDF2TABLE_OPTS - "sdf2table" program options
# (in makerules.configuration)
#
%.def.tbl: %.def
${SDF2TABLE} ${SDF2TABLE_OPTS} -i $< -o $@
|