Titan Core Initial Contribution
[deliverable/titan.core.git] / regression_test / cfgFile / Makefile
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 TOPDIR := ..
9 include ../Makefile.regression
10 unexport ABS_SRC
11 unexport SRCDIR
12
13 DIRS := define module_parameters ordered_include testport_parameters
14
15 # List of fake targets:
16 .PHONY: all dep clean run $(DIRS) $(addsuffix /, $(DIRS)) profile
17
18 all run dep clean distclean:
19 for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
20
21 # To run just one test, type "make dir" or "make "dir/"
22 $(DIRS) $(addsuffix /, $(DIRS)):
23 $(MAKE) -C $@ run
24
25 # To run all tests, possibly in parallel
26 runall: $(DIRS)
27
28
This page took 0.045816 seconds and 5 git commands to generate.