Sync with 5.4.0
[deliverable/titan.core.git] / core2 / Makefile
CommitLineData
970ed795 1###############################################################################
3abe9331 2# Copyright (c) 2000-2015 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
7###############################################################################
8# Makefile for the function test version Base Library of TTCN-3 Test Executor
9
10FUNCTION_TEST_RUNTIME := yes
11
12RT2_SOURCES := Basetype2.cc
13
14ifndef SRCDIR
15SRCDIR := ..
16endif
17
18include ../core/Makefile
19
20CPPFLAGS += -I../core
21
22ifdef SRCDIR
23CPPFLAGS += -I$(SRCDIR)/core
24endif
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
29vpath %.c $(SRCDIR)/core
30vpath %.cc ../core:$(SRCDIR)/core
31vpath %.xsd $(SRCDIR)/core
32vpath %.ttcn $(SRCDIR)/core
33vpath cversion.h $(SRCDIR)/core
This page took 0.027938 seconds and 5 git commands to generate.