Sync with 5.1.0
[deliverable/titan.core.git] / regression_test / cfg_list_concat / Makefile
CommitLineData
970ed795
EL
1###############################################################################
2# Copyright (c) 2000-2014 Ericsson Telecom AB
3# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7###############################################################################
8TOPDIR := ..
9include ../Makefile.regression
10
11# WARNING! This Makefile can be used with GNU make only.
12# Other versions of make may report syntax errors in it.
13
14#
15# Do NOT touch this line...
16#
17.PHONY: all archive check clean dep objects
18
19.SUFFIXES: .d
20
21#
22# Set these variables...
23#
24
25
26# Flags for the C++ preprocessor (and makedepend as well):
27#CPPFLAGS +=
28
29# Flags for dependency generation
30CXXDEPFLAGS = -MM
31
32# Flags for the C++ compiler:
33#CXXFLAGS +=
34
35# Flags for the linker:
36#LDFLAGS +=
37
38
39# Flags for the TTCN-3 and ASN.1 compiler:
40COMPILER_FLAGS += -Lg
41
42# Execution mode: (either ttcn3 or ttcn3-parallel)
43TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX)
44
45#
46# You may change these variables. Add your files if necessary...
47#
48
49# TTCN-3 modules of this project:
50TTCN3_MODULES = concat.ttcn
51
52# ASN.1 modules of this project:
53ASN1_MODULES =
54
55# C++ source & header files generated from the TTCN-3 & ASN.1 modules of
56# this project:
57GENERATED_SOURCES = $(TTCN3_MODULES:.ttcn=.cc) $(ASN1_MODULES:.asn=.cc)
58GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
59
60# C/C++ Source & header files of Test Ports, external functions and
61# other modules:
62USER_SOURCES =
63USER_HEADERS = $(USER_SOURCES:.cc=.hh)
64
65# Object files of this project that are needed for the executable test suite:
66OBJECTS = $(GENERATED_OBJECTS) $(USER_OBJECTS)
67
68GENERATED_OBJECTS = $(GENERATED_SOURCES:.cc=.o)
69
70USER_OBJECTS = $(USER_SOURCES:.cc=.o)
71
72DEPFILES = $(USER_OBJECTS:.o=.d) $(GENERATED_OBJECTS:.o=.d)
73
74# Other files of the project (Makefile, configuration files, etc.)
75# that will be added to the archived source files:
76OTHER_FILES = config.cfg Makefile
77
78# The name of the executable test suite:
79TARGET = concat
80
81#
82# Rules for building the executable...
83#
84
85all: $(TARGET) ;
86
87objects: $(OBJECTS) compile;
88
89$(TARGET): $(OBJECTS)
90 if $(CXX) $(LDFLAGS) -o $@ $^ \
91 -L$(TTCN3_DIR)/lib -l$(TTCN3_LIB) \
92 -L$(OPENSSL_DIR)/lib -lcrypto \
93 -L$(XMLDIR)/lib $($(PLATFORM)_LIBS); \
94 then : ; else $(TTCN3_DIR)/bin/titanver $(OBJECTS); exit 1; fi
95
96.cc.o .c.o:
97 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
98
99.cc.d .c.d:
100 @echo Creating dependency file for '$<'; set -e; \
101 $(CXX) $(CXXDEPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $< \
102 | sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' > $@; \
103 [ -s $@ ] || rm -f $@
104
105$(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
106 @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
107
108compile: $(TTCN3_MODULES) $(ASN1_MODULES)
109 $(TTCN3_DIR)/bin/compiler $(COMPILER_FLAGS) $^ - $?
110 touch $@
111
112clean:
113 -$(RM) $(TARGET) $(OBJECTS) $(GENERATED_HEADERS) \
114 $(GENERATED_SOURCES) compile \
115 tags *.log
116
117distclean: clean
118 -$(RM) $(DEPFILES)
119
120dep: $(GENERATED_SOURCES) $(USER_SOURCES) ;
121
122ifeq ($(findstring n,$(MAKEFLAGS)),)
123ifeq ($(filter clean distclean check compile archive diag,$(MAKECMDGOALS)),)
124-include $(DEPFILES)
125endif
126endif
127
128
129diag:
130 $(TTCN3_DIR)/bin/compiler -v 2>&1
131 $(TTCN3_DIR)/bin/mctr_cli -v 2>&1
132 $(CXX) -v 2>&1
133 @echo TTCN3_DIR=$(TTCN3_DIR)
134 @echo OPENSSL_DIR=$(OPENSSL_DIR)
135 @echo XMLDIR=$(XMLDIR)
136 @echo PLATFORM=$(PLATFORM)
137
138#
139# Add your rules here if necessary...
140#
141
142RUN := $(shell which colortitan 2>/dev/null)
143ifeq ($(firstword $(RUN)),no)
144# stupid /bin/which on Solaris writes errors to stdout instead of stderr
145RUN :=
146endif
147
148run: $(TARGET) everything.cfg
149ifeq ($(findstring parallel,$(TTCN3_LIB)),)
150 $(RUN) ./$^
151else
152 $(TTCN3_DIR)/bin/ttcn3_start $^
153endif
154
155debug:
156 $(MAKE) run RUN='gdb --args'
157
158# The end
This page took 0.028893 seconds and 5 git commands to generate.