Skip to content
Snippets Groups Projects
Commit 35f7573d authored by Botond Baranyi's avatar Botond Baranyi
Browse files

Fixed logger control test when used with dynamic linking


Change-Id: I88281d7833012280f62667c74d258b0e90402053
Signed-off-by: default avatarBotond Baranyi <botond.baranyi@ericsson.com>
parent 9638d488
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,12 @@ TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ...@@ -53,7 +53,12 @@ TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
# #
# TTCN-3 modules of this project: # TTCN-3 modules of this project:
TTCN3_MODULES := logcontrol.ttcn TitanLoggerControl.ttcn TTCN3_MODULES := logcontrol.ttcn
# This is needed by the compiler for semantic analysis, but it should
# not be built and linked to the executable (since it's already part
# of the runtime library)
TITAN_RUNTIME_MODULES := TitanLoggerControl.ttcn
# ASN.1 modules of this project: # ASN.1 modules of this project:
ASN1_MODULES = ASN1_MODULES =
...@@ -116,7 +121,7 @@ $(TARGET): $(OBJECTS) ...@@ -116,7 +121,7 @@ $(TARGET): $(OBJECTS)
$(GENERATED_SOURCES) $(GENERATED_HEADERS): compile $(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
@if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
compile: $(TTCN3_MODULES) $(ASN1_MODULES) compile: $(TTCN3_MODULES) $(ASN1_MODULES) $(TITAN_RUNTIME_MODULES)
$(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $? $(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $?
touch $@ touch $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment