Sync with 5.1.0
[deliverable/titan.core.git] / mctr2 / Makefile
CommitLineData
970ed795
EL
1###############################################################################
2# Copyright (c) 2000-2014 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# Main Makefile for the TTCN-3 Main Controller
9
10TOP := ..
11include $(TOP)/Makefile.cfg
12
13SUBDIRS :=
14ifeq ($(CLI), yes)
15 SUBDIRS += editline cli
16endif
17SUBDIRS += mctr
18
19all run:
20 @for i in $(SUBDIRS) ; do \
21 (cd $$i && $(MAKE)) || exit; \
22 done
23
24install: all
25 cd mctr && $(MAKE) install
26
27include ../Makefile.genrules
This page took 0.023529 seconds and 5 git commands to generate.