fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / idlc / CustomTarget_parser_test.mk
blob84b01d9cb45e6f792ad804a7b52e24e95983c945
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_CustomTarget_CustomTarget,idlc/parser_test))
12 # this target is phony to run it every time
13 .PHONY : $(call gb_CustomTarget_get_target,idlc/parser_test)
15 $(call gb_CustomTarget_get_target,idlc/parser_test) : \
16 $(call gb_Executable_get_runtime_dependencies,idlc) \
17 $(SRCDIR)/solenv/bin/exectest.pl \
18 $(SRCDIR)/idlc/test/parser/attribute.tests \
19 $(SRCDIR)/idlc/test/parser/constant.tests \
20 $(SRCDIR)/idlc/test/parser/constructor.tests \
21 $(SRCDIR)/idlc/test/parser/interfaceinheritance.tests \
22 $(SRCDIR)/idlc/test/parser/methodoverload.tests \
23 $(SRCDIR)/idlc/test/parser/polystruct.tests \
24 $(SRCDIR)/idlc/test/parser/published.tests \
25 $(SRCDIR)/idlc/test/parser/struct.tests \
26 $(SRCDIR)/idlc/test/parser/typedef.tests \
27 | $(call gb_CustomTarget_get_workdir,idlc/parser_test)/.dir
28 $(call gb_Helper_abbreviate_dirs,( \
29 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
30 $(SRCDIR)/idlc/test/parser/attribute.tests \
31 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
32 $(call gb_Executable_get_command,idlc) \
33 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
34 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
35 $(SRCDIR)/idlc/test/parser/constant.tests \
36 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
37 $(call gb_Executable_get_command,idlc) \
38 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
39 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
40 $(SRCDIR)/idlc/test/parser/constructor.tests \
41 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
42 $(call gb_Executable_get_command,idlc) \
43 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
44 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
45 $(SRCDIR)/idlc/test/parser/interfaceinheritance.tests \
46 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
47 $(call gb_Executable_get_command,idlc) \
48 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
49 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
50 $(SRCDIR)/idlc/test/parser/methodoverload.tests \
51 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
52 $(call gb_Executable_get_command,idlc) \
53 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
54 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
55 $(SRCDIR)/idlc/test/parser/oldstyle.tests \
56 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
57 $(call gb_Executable_get_command,idlc) \
58 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
59 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
60 $(SRCDIR)/idlc/test/parser/polystruct.tests \
61 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
62 $(call gb_Executable_get_command,idlc) \
63 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
64 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
65 $(SRCDIR)/idlc/test/parser/published.tests \
66 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
67 $(call gb_Executable_get_command,idlc) \
68 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
69 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
70 $(SRCDIR)/idlc/test/parser/struct.tests \
71 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
72 $(call gb_Executable_get_command,idlc) \
73 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {} && \
74 $(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
75 $(SRCDIR)/idlc/test/parser/typedef.tests \
76 $(call gb_CustomTarget_get_workdir,idlc/parser_test)/in.idl 0 \
77 $(call gb_Executable_get_command,idlc) \
78 -O $(call gb_CustomTarget_get_workdir,idlc/parser_test) {}) \
79 > $@.log 2>&1 || (cat $@.log && false))
81 # vim: set noet sw=4 ts=4: