Merge pull request #80 from balaskoa/master
[deliverable/titan.core.git] / core2 / 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 # Balasko, Jeno
10 # Delic, Adam
11 # Kovacs, Ferenc
12 # Raduly, Csaba
13 #
14 ##############################################################################
15 # Makefile for the function test version Base Library of TTCN-3 Test Executor
16
17 FUNCTION_TEST_RUNTIME := yes
18
19 RT2_SOURCES := Basetype2.cc
20
21 ifndef SRCDIR
22 SRCDIR := ..
23 endif
24
25 include ../core/Makefile
26
27 CPPFLAGS += -I../core
28
29 ifdef SRCDIR
30 CPPFLAGS += -I$(SRCDIR)/core
31 endif
32
33 # Tell make that .c and .cc files can be found in another directory.
34 # Selective (lowercase) vpath is a GNU make feature.
35
36 vpath %.c $(SRCDIR)/core
37 vpath %.cc ../core:$(SRCDIR)/core
38 vpath %.xsd $(SRCDIR)/core
39 vpath %.ttcn $(SRCDIR)/core
40 vpath cversion.h $(SRCDIR)/core
This page took 0.042146 seconds and 5 git commands to generate.