Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / cfgFile / module_parameters / assignment / Makefile
index b8ba4b00fdb452bcdc0936746dde195218d3a29f..46145fbcccf25fa550816d781d537c329184d30a 100644 (file)
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2000-2014 Ericsson Telecom AB
+# Copyright (c) 2000-2015 Ericsson Telecom AB
 # All rights reserved. This program and the accompanying materials
 # are made available under the terms of the Eclipse Public License v1.0
 # which accompanies this distribution, and is available at
@@ -15,6 +15,11 @@ DIR_SINGLE := dir_single_mode
 DIR_PARALLEL := dir_parallel_mode
 GENERATED_DIRS := $(DIR_SINGLE) $(DIR_PARALLEL)
 
+COVERAGE_FLAG := 
+ifeq ($(COVERAGE), yes)
+  COVERAGE_FLAG += -C
+endif
+
 MAKE_PROG := $(MAKE)
 
 # List of fake targets:
@@ -25,12 +30,12 @@ all: $(GENERATED_DIRS)
 dir_single_mode:
        mkdir $@
        cd $@ && for file in $(FILES); do ln -s ../$$file || exit; done
-       cd $@ && $(TTCN3_DIR)/bin/ttcn3_makefilegen -s ./* && $(MAKE_PROG)
+       cd $@ && $(TTCN3_DIR)/bin/ttcn3_makefilegen $(COVERAGE_FLAG) -s ./* && $(MAKE_PROG)
        
 dir_parallel_mode:
        mkdir $@
        cd $@ && for file in $(FILES); do ln -s ../$$file || exit; done
-       cd $@ && $(TTCN3_DIR)/bin/ttcn3_makefilegen ./* && $(MAKE_PROG)
+       cd $@ && $(TTCN3_DIR)/bin/ttcn3_makefilegen $(COVERAGE_FLAG) ./* && $(MAKE_PROG)
 
 run: $(GENERATED_DIRS)
        cd $(DIR_SINGLE) && ./$(RUNNABLE) $(CFG) 
This page took 0.023661 seconds and 5 git commands to generate.