Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / RAW / HQ26535 / 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# Raduly, Csaba
12#
13##############################################################################
970ed795
EL
14TOPDIR := ../..
15include ../../Makefile.regression
16
17# WARNING! This Makefile can be used with GNU make only.
18# Other versions of make may report syntax errors in it.
19
20#
21# Do NOT touch this line...
22#
23.PHONY: all archive check clean dep objects
24
25.SUFFIXES: .d
26
27# Flags for the C++ preprocessor (and makedepend as well):
28#CPPFLAGS +=
29
30# Flags for dependency generation
31CXXDEPFLAGS = -MM
32
33# Flags for the C++ compiler:
34#CXXFLAGS +=
35
36# Flags for the linker:
37#LDFLAGS +=
38
39# Flags for the TTCN-3 and ASN.1 compiler:
40#COMPILER_FLAGS +=
41
42# Execution mode: (either ttcn3 or ttcn3-parallel)
43TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(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 = gtpctest.ttcn GTPv2_Types.ttcn General_Types.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 = Makefile
77
78# The name of the executable test suite:
79TARGET = gtpctest$(EXESUFFIX)
80
81
82#
83# Rules for building the executable...
84#
85
86all: $(TARGET) ;
87
88objects: $(OBJECTS) compile;
89
90$(TARGET): $(OBJECTS)
91 if $(CXX) $(LDFLAGS) -o $@ $^ \
92 -L$(TTCN3_DIR)/lib -l$(TTCN3_LIB) \
93 -L$(OPENSSL_DIR)/lib -lcrypto \
94 -L$(XMLDIR)/lib $($(PLATFORM)_LIBS); \
95 then : ; else $(TTCN3_DIR)/bin/titanver $(OBJECTS); exit 1; fi
96
97.cc.o .c.o:
98 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
99
100.cc.d .c.d:
101 @echo Creating dependency file for '$<'; set -e; \
102 $(CXX) $(CXXDEPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $< \
103 | sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' > $@; \
104 [ -s $@ ] || rm -f $@
105
106$(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
107 @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
108
109compile: $(TTCN3_MODULES) $(ASN1_MODULES)
110 $(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $?
111 touch $@
112
113clean distclean:
114 -$(RM) $(TARGET) $(OBJECTS) $(GENERATED_HEADERS) \
115 $(GENERATED_SOURCES) compile $(DEPFILES) \
116 tags *.log
117
118dep: $(GENERATED_SOURCES) $(USER_SOURCES) ;
119
120ifeq ($(findstring n,$(MAKEFLAGS)),)
121ifeq ($(filter clean distclean check compile archive diag,$(MAKECMDGOALS)),)
122-include $(DEPFILES)
123endif
124endif
125
126diag:
127 $(TTCN3_DIR)/bin/compiler -v 2>&1
128 $(TTCN3_DIR)/bin/mctr_cli -v 2>&1
129 $(CXX) -v 2>&1
130 @echo TTCN3_DIR=$(TTCN3_DIR)
131 @echo OPENSSL_DIR=$(OPENSSL_DIR)
132 @echo XMLDIR=$(XMLDIR)
133 @echo PLATFORM=$(PLATFORM)
134
135#
136# Add your rules here if necessary...
137#
138
139run: $(TARGET)
140 ./$^
141
This page took 0.031575 seconds and 5 git commands to generate.