0d2a9ad1772ac0a59977b1f0e89fcde24c7bf488
[deliverable/titan.core.git] / regression_test / XML / HQ30408 / Makefile
1 ##############################################################################
2 # Copyright (c) 2000-2016 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 #
8 # Contributors:
9 # Baji, Laszlo
10 # Balasko, Jeno
11 # Raduly, Csaba
12 #
13 ##############################################################################
14 TOPDIR = ../..
15 include ../../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 #
28 # Set these variables...
29 #
30
31 # Flags for the C++ preprocessor (and makedepend as well):
32 #CPPFLAGS +=
33
34 # Flags for dependency generation
35 CXXDEPFLAGS = -MM
36
37 # Flags for the C++ compiler:
38 CXXFLAGS += -Wall
39
40 # Flags for the linker:
41 #LDFLAGS +=
42
43 # Flags for the TTCN-3 and ASN.1 compiler:
44 #COMPILER_FLAGS +=
45
46 # Execution mode: (either ttcn3 or ttcn3-parallel)
47 TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
48
49 #
50 # You may change these variables. Add your files if necessary...
51 #
52
53 # TTCN-3 modules of this project:
54 TTCN3_MODULES = HQ30408.ttcn
55
56 # ASN.1 modules of this project:
57 ASN1_MODULES =
58
59 # C++ source & header files generated from the TTCN-3 & ASN.1 modules of
60 # this project:
61 GENERATED_SOURCES = $(TTCN3_MODULES:.ttcn=.cc) $(ASN1_MODULES:.asn=.cc)
62 GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
63
64 # C/C++ Source & header files of Test Ports, external functions and
65 # other modules:
66 USER_SOURCES =
67 USER_HEADERS = $(USER_SOURCES:.cc=.hh)
68
69 # Object files of this project that are needed for the executable test suite:
70 OBJECTS = $(GENERATED_OBJECTS) $(USER_OBJECTS)
71
72 GENERATED_OBJECTS = $(GENERATED_SOURCES:.cc=.o)
73
74 USER_OBJECTS = $(USER_SOURCES:.cc=.o)
75
76 DEPFILES = $(USER_OBJECTS:.o=.d) $(GENERATED_OBJECTS:.o=.d)
77
78 # Other files of the project (Makefile, configuration files, etc.)
79 # that will be added to the archived source files:
80 OTHER_FILES = Makefile
81
82 # The name of the executable test suite:
83 TARGET = HQ30408
84
85 #
86 # Rules for building the executable...
87 #
88
89 all: $(TARGET) ;
90
91 objects: $(OBJECTS) compile;
92
93 $(TARGET): $(OBJECTS)
94 if $(CXX) $(LDFLAGS) -o $@ $^ \
95 -L$(TTCN3_DIR)/lib -l$(TTCN3_LIB) \
96 -L$(OPENSSL_DIR)/lib -lcrypto \
97 -L$(XMLDIR)/lib $($(PLATFORM)_LIBS); \
98 then : ; else $(TTCN3_DIR)/bin/titanver $(OBJECTS); exit 1; fi
99
100 .cc.o .c.o:
101 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
102
103 .cc.d .c.d:
104 @echo Creating dependency file for '$<'; set -e; \
105 $(CXX) $(CXXDEPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $< \
106 | sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' > $@; \
107 [ -s $@ ] || rm -f $@
108
109 $(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
110 @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
111
112 compile: $(TTCN3_MODULES) $(ASN1_MODULES)
113 $(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $?
114 touch $@
115
116 clean distclean:
117 -$(RM) $(TARGET) $(OBJECTS) $(GENERATED_HEADERS) \
118 $(GENERATED_SOURCES) compile $(DEPFILES) \
119 tags *.log
120
121 dep: $(GENERATED_SOURCES) $(USER_SOURCES) ;
122
123 ifeq ($(findstring n,$(MAKEFLAGS)),)
124 ifeq ($(filter clean distclean check compile archive diag,$(MAKECMDGOALS)),)
125 -include $(DEPFILES)
126 endif
127 endif
128
129 diag:
130 $(TTCN3_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
142 run: $(TARGET)
143 ./$^
144
This page took 0.032797 seconds and 4 git commands to generate.