implemented new code splitting mechanism (split to equal slices)
[deliverable/titan.core.git] / regression_test / XML / HR49727 / Makefile
CommitLineData
d44e3c4f 1##############################################################################
2# Copyright (c) 2000-2016 Ericsson Telecom AB
970ed795
EL
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
d44e3c4f 7#
8# Contributors:
9# Baji, Laszlo
10# Balasko, Jeno
11# Ormandi, Matyas
14e21cff 12# Szabo, Bence Janos
d44e3c4f 13#
14##############################################################################
970ed795
EL
15TOPDIR = ../..
16include ../../Makefile.regression
17
18# WARNING! This Makefile can be used with GNU make only.
19# Other versions of make may report syntax errors in it.
20
21#
22# Do NOT touch this line...
23#
24.PHONY: all archive check clean dep objects
25
26.SUFFIXES: .d
27
28#
29# Set these variables...
30#
31
32# Flags for the C++ preprocessor (and makedepend as well):
33#CPPFLAGS +=
34
35# Flags for dependency generation
36CXXDEPFLAGS = -MM
37
38# Flags for the C++ compiler:
39#CXXFLAGS +=
40
41# Flags for the linker:
42#LDFLAGS +=
43
44# Flags for the TTCN-3 and ASN.1 compiler:
45#COMPILER_FLAGS +=
46
47# Execution mode: (either ttcn3 or ttcn3-parallel)
48TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
49
50#
51# You may change these variables. Add your files if necessary...
52#
53
54# TTCN-3 modules of this project:
55TTCN3_MODULES = HR49727.ttcn http_jabber_org_protocol_pubsub.ttcn http_jabber_org_protocol_pubsub_event.ttcn jabber_x_data.ttcn XSD.ttcn UsefulTtcn3Types.ttcn
56
57# ASN.1 modules of this project:
58ASN1_MODULES =
59
60# C++ source & header files generated from the TTCN-3 & ASN.1 modules of
61# this project:
62GENERATED_SOURCES = $(TTCN3_MODULES:.ttcn=.cc) $(ASN1_MODULES:.asn=.cc)
63GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
14e21cff 64ifdef SPLIT_TO_SLICES
65POSTFIXES := $(foreach file, $(SPLIT_TO_SLICES), $(addsuffix $(file), _part_))
66POSTFIXES := $(foreach file, $(POSTFIXES), $(addprefix $(file), .cc))
67GENERATED_SOURCES2 := $(foreach file, $(GENERATED_SOURCES:.cc=), $(addprefix $(file), $(POSTFIXES)))
68GENERATED_SOURCES += $(GENERATED_SOURCES2)
69endif
970ed795
EL
70# C/C++ Source & header files of Test Ports, external functions and
71# other modules:
72USER_SOURCES =
73USER_HEADERS = $(USER_SOURCES:.cc=.hh)
74
75# Object files of this project that are needed for the executable test suite:
76OBJECTS = $(GENERATED_OBJECTS) $(USER_OBJECTS)
77
78GENERATED_OBJECTS = $(GENERATED_SOURCES:.cc=.o)
79
80USER_OBJECTS = $(USER_SOURCES:.cc=.o)
81
82DEPFILES = $(USER_OBJECTS:.o=.d) $(GENERATED_OBJECTS:.o=.d)
83
84# Other files of the project (Makefile, configuration files, etc.)
85# that will be added to the archived source files:
86OTHER_FILES = Makefile
87
88# The name of the executable test suite:
89TARGET = HR49727
90
91#
92# Rules for building the executable...
93#
94
95all: $(TARGET) ;
96
97objects: $(OBJECTS) compile;
98
99$(TARGET): $(OBJECTS)
100 if $(CXX) $(LDFLAGS) -o $@ $^ \
101 -L$(TTCN3_DIR)/lib -l$(TTCN3_LIB) \
102 -L$(OPENSSL_DIR)/lib -lcrypto \
103 -L$(XMLDIR)/lib $($(PLATFORM)_LIBS); \
104 then : ; else $(TTCN3_DIR)/bin/titanver $(OBJECTS); exit 1; fi
105
106.cc.o .c.o:
107 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
108
109.cc.d .c.d:
110 @echo Creating dependency file for '$<'; set -e; \
111 $(CXX) $(CXXDEPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $< \
112 | sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' > $@; \
113 [ -s $@ ] || rm -f $@
114
115$(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
116 @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
117
118compile: $(TTCN3_MODULES) $(ASN1_MODULES)
119 $(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $?
120 touch $@
121
122clean distclean:
123 -$(RM) $(TARGET) $(LIBRARY) $(OBJECTS) $(GENERATED_HEADERS) \
124 $(GENERATED_SOURCES) compile $(DEPFILES) \
125 tags *.log
126
127dep: $(GENERATED_SOURCES) $(USER_SOURCES) ;
128
129ifeq ($(findstring n,$(MAKEFLAGS)),)
130ifeq ($(filter clean distclean check compile archive diag,$(MAKECMDGOALS)),)
131-include $(DEPFILES)
132endif
133endif
134
135diag:
136 $(TTCN3_DIR)/bin/compiler -v 2>&1
137 $(TTCN3_DIR)/bin/mctr_cli -v 2>&1
138 $(CXX) -v 2>&1
139 @echo TTCN3_DIR=$(TTCN3_DIR)
140 @echo OPENSSL_DIR=$(OPENSSL_DIR)
141 @echo XMLDIR=$(XMLDIR)
142 @echo PLATFORM=$(PLATFORM)
143
144#
145# Add your rules here if necessary...
146#
147
148run: $(TARGET)
149 ./$^ config.cfg
150
This page took 0.030388 seconds and 5 git commands to generate.