From 0f3b45adf7013aad1a936fee3585d8bffef257be Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 8 Sep 2015 17:34:13 +0200 Subject: [PATCH] bugfix in stt to dbd file --- App/tools/driver.makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index 77ca155..605f570 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -630,7 +630,8 @@ GENERIC_SRC_INCLUDES = $(SRC_INCLUDES) EXPANDARG = -3.14 # Create dbd file for snl code -DBDFILES += $(patsubst %.st,%_snl.dbd,$(notdir $(filter %.st %.stt,${SRCS}))) +DBDFILES += $(patsubst %.st,%_snl.dbd,$(notdir $(filter %.st,${SRCS}))) +DBDFILES += $(patsubst %.stt,%_snl.dbd,$(notdir $(filter %.stt,${SRCS}))) # Create dbd file for GPIB code DBDFILES += $(patsubst %.gt,%.dbd,$(notdir $(filter %.gt,${SRCS})))