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