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