]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/testsuite/Makefile.in
demangle.h (DMGL_DLANG): New macro.
[thirdparty/gcc.git] / libiberty / testsuite / Makefile.in
CommitLineData
7c72138a
TT
1#
2# Makefile
cf61af07 3# Copyright (C) 1999, 2002, 2006
7c72138a
TT
4# Free Software Foundation
5#
6# This file is part of the libiberty library.
7# Libiberty is free software; you can redistribute it and/or
8# modify it under the terms of the GNU Library General Public
9# License as published by the Free Software Foundation; either
10# version 2 of the License, or (at your option) any later version.
11#
12# Libiberty is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# Library General Public License for more details.
16#
17# You should have received a copy of the GNU Library General Public
18# License along with libiberty; see the file COPYING.LIB. If not,
0cbe2a68
KC
19# write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20# Boston, MA 02110-1301, USA.
7c72138a
TT
21#
22
23# This file was written by Tom Tromey <tromey@cygnus.com>.
24
25#
26# Makefile for libiberty/testsuite directory
27#
28
29srcdir = @srcdir@
30VPATH = @srcdir@
31
32SHELL = @SHELL@
33
34CC = @CC@
35CFLAGS = @CFLAGS@
36LIBCFLAGS = $(CFLAGS)
37
38# Multilib support variables.
39MULTISRCTOP =
40
41INCDIR=$(srcdir)/../$(MULTISRCTOP)../include
42
43all:
44
a584cf65 45# CHECK is set to "really_check" or the empty string by configure.
7c72138a
TT
46check: @CHECK@
47
43b1b9ed 48really-check: check-cplus-dem check-d-demangle check-pexecute check-expandargv
a584cf65 49
7c72138a 50# Run some tests of the demangler.
3fd9d606
ZW
51check-cplus-dem: test-demangle $(srcdir)/demangle-expected
52 ./test-demangle < $(srcdir)/demangle-expected
7c72138a 53
43b1b9ed
IB
54check-d-demangle: test-demangle $(srcdir)/d-demangle-expected
55 ./test-demangle < $(srcdir)/d-demangle-expected
56
a584cf65
ILT
57# Check the pexecute code.
58check-pexecute: test-pexecute
59 ./test-pexecute
60
974c2c56
CD
61# Check the expandargv functionality
62check-expandargv: test-expandargv
63 ./test-expandargv
64
635f4800
GB
65# Run the demangler fuzzer
66fuzz-demangler: demangler-fuzzer
67 ./demangler-fuzzer
68
7c72138a 69TEST_COMPILE = $(CC) @DEFS@ $(LIBCFLAGS) -I.. -I$(INCDIR) $(HDEFINES)
a9b571f2 70test-demangle: $(srcdir)/test-demangle.c ../libiberty.a
3fd9d606
ZW
71 $(TEST_COMPILE) -o test-demangle \
72 $(srcdir)/test-demangle.c ../libiberty.a
7c72138a 73
a584cf65
ILT
74test-pexecute: $(srcdir)/test-pexecute.c ../libiberty.a
75 $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-pexecute \
76 $(srcdir)/test-pexecute.c ../libiberty.a
5ff3a208 77
974c2c56
CD
78test-expandargv: $(srcdir)/test-expandargv.c ../libiberty.a
79 $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-expandargv \
80 $(srcdir)/test-expandargv.c ../libiberty.a
a584cf65 81
635f4800
GB
82demangler-fuzzer: $(srcdir)/demangler-fuzzer.c ../libiberty.a
83 $(TEST_COMPILE) -o demangler-fuzzer \
84 $(srcdir)/demangler-fuzzer.c ../libiberty.a
85
7c72138a 86# Standard (either GNU or Cygnus) rules we don't use.
267686a7
BM
87html install-html info install-info clean-info dvi pdf install-pdf \
88install etags tags installcheck:
7c72138a
TT
89
90# The standard clean rules.
91mostlyclean:
3fd9d606 92 rm -f test-demangle
974c2c56
CD
93 rm -f test-pexecute
94 rm -f test-expandargv
635f4800 95 rm -f demangler-fuzzer
5ff3a208 96 rm -f core
7c72138a
TT
97clean: mostlyclean
98distclean: clean
99 rm -f Makefile
100maintainer-clean realclean: distclean
101
7c72138a
TT
102Makefile: $(srcdir)/Makefile.in ../config.status
103 CONFIG_FILES=testsuite/Makefile CONFIG_HEADERS= \
104 cd .. && $(SHELL) ./config.status