Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / XML / Makefile
1 ##############################################################################
2 # Copyright (c) 2000-2016 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 # Contributors:
9 # Baji, Laszlo
10 # Balasko, Jeno
11 # Baranyi, Botond
12 # Ormandi, Matyas
13 # Pilisi, Gergely
14 # Raduly, Csaba
15 # Szabo, Bence Janos
16 #
17 ##############################################################################
18 TOPDIR := ..
19 include ../Makefile.regression
20 unexport ABS_SRC
21 unexport SRCDIR
22
23 ifdef RT2
24 RT2_ONLY := NegativeTest
25 SHADOWED := XER TTCNandXML EXER-whitepaper XMLqualif
26 else
27 SHADOWED := XER* TTCNandXML* EXER-whitepaper* XMLqualif*
28 endif
29
30 XDIRS := $(wildcard $(SHADOWED)) xsdConverter \
31 HM60295 HN15589 HQ30408 HR49727 HU13380 $(RT2_ONLY) \
32 XmlWorkflow tpdValidTest AbstractBlock UseNilLong
33
34 # List of fake targets:
35 .PHONY: all dep clean run $(XDIRS) $(addsuffix /, $(XDIRS)) profile
36
37 all dep clean distclean:
38 for dir in $(XDIRS); do $(MAKE) -C $$dir $@ || exit; done
39
40 run:
41 for dir in $(XDIRS); do $(MAKE) -C $$dir $@ || exit; done
42
43 # To run just one test, type "make dir" or "make "dir/"
44 $(XDIRS) $(addsuffix /, $(XDIRS)):
45 $(MAKE) -C $@ run
46
47 # To run all tests, possibly in parallel
48 runall: $(XDIRS)
49
50
This page took 0.104449 seconds and 5 git commands to generate.