Sync with 5.4.0
[deliverable/titan.core.git] / core2 / Makefile
1 ###############################################################################
2 # Copyright (c) 2000-2015 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 # Makefile for the function test version Base Library of TTCN-3 Test Executor
9
10 FUNCTION_TEST_RUNTIME := yes
11
12 RT2_SOURCES := Basetype2.cc
13
14 ifndef SRCDIR
15 SRCDIR := ..
16 endif
17
18 include ../core/Makefile
19
20 CPPFLAGS += -I../core
21
22 ifdef SRCDIR
23 CPPFLAGS += -I$(SRCDIR)/core
24 endif
25
26 # Tell make that .c and .cc files can be found in another directory.
27 # Selective (lowercase) vpath is a GNU make feature.
28
29 vpath %.c $(SRCDIR)/core
30 vpath %.cc ../core:$(SRCDIR)/core
31 vpath %.xsd $(SRCDIR)/core
32 vpath %.ttcn $(SRCDIR)/core
33 vpath cversion.h $(SRCDIR)/core
This page took 0.039049 seconds and 5 git commands to generate.