MIPS/opcodes: Only examine ELF file structures if SYMTAB_AVAILABLE
[deliverable/binutils-gdb.git] / libiberty / testsuite / Makefile.in
1 #
2 # Makefile
3 # Copyright (C) 1999, 2002, 2006
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,
19 # write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
21 #
22
23 # This file was written by Tom Tromey <tromey@cygnus.com>.
24
25 #
26 # Makefile for libiberty/testsuite directory
27 #
28
29 srcdir = @srcdir@
30 VPATH = @srcdir@
31
32 SHELL = @SHELL@
33
34 CC = @CC@
35 CFLAGS = @CFLAGS@
36 LIBCFLAGS = $(CFLAGS) $(LDFLAGS)
37
38 # Multilib support variables.
39 MULTISRCTOP =
40
41 INCDIR=$(srcdir)/../$(MULTISRCTOP)../include
42
43 all:
44
45 # CHECK is set to "really_check" or the empty string by configure.
46 check: @CHECK@
47
48 really-check: check-cplus-dem check-d-demangle check-rust-demangle \
49 check-pexecute check-expandargv check-strtol
50
51 # Run some tests of the demangler.
52 check-cplus-dem: test-demangle $(srcdir)/demangle-expected
53 ./test-demangle < $(srcdir)/demangle-expected
54
55 check-d-demangle: test-demangle $(srcdir)/d-demangle-expected
56 ./test-demangle < $(srcdir)/d-demangle-expected
57
58 check-rust-demangle: test-demangle $(srcdir)/rust-demangle-expected
59 ./test-demangle < $(srcdir)/rust-demangle-expected
60
61 # Check the pexecute code.
62 check-pexecute: test-pexecute
63 ./test-pexecute
64
65 # Check the expandargv functionality
66 check-expandargv: test-expandargv
67 ./test-expandargv
68
69 # Check the strtol functionality
70 check-strtol: test-strtol
71 ./test-strtol
72
73 # Run the demangler fuzzer
74 fuzz-demangler: demangler-fuzzer
75 ./demangler-fuzzer
76
77 TEST_COMPILE = $(CC) @DEFS@ $(LIBCFLAGS) -I.. -I$(INCDIR) $(HDEFINES)
78 test-demangle: $(srcdir)/test-demangle.c ../libiberty.a
79 $(TEST_COMPILE) -o test-demangle \
80 $(srcdir)/test-demangle.c ../libiberty.a
81
82 test-pexecute: $(srcdir)/test-pexecute.c ../libiberty.a
83 $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-pexecute \
84 $(srcdir)/test-pexecute.c ../libiberty.a
85
86 test-expandargv: $(srcdir)/test-expandargv.c ../libiberty.a
87 $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-expandargv \
88 $(srcdir)/test-expandargv.c ../libiberty.a
89
90 test-strtol: $(srcdir)/test-strtol.c ../libiberty.a
91 $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-strtol \
92 $(srcdir)/test-strtol.c ../libiberty.a
93
94 demangler-fuzzer: $(srcdir)/demangler-fuzzer.c ../libiberty.a
95 $(TEST_COMPILE) -o demangler-fuzzer \
96 $(srcdir)/demangler-fuzzer.c ../libiberty.a
97
98 # Standard (either GNU or Cygnus) rules we don't use.
99 html install-html info install-info clean-info dvi pdf install-pdf \
100 install etags tags installcheck:
101
102 # The standard clean rules.
103 mostlyclean:
104 rm -f test-demangle
105 rm -f test-pexecute
106 rm -f test-expandargv
107 rm -f test-strtol
108 rm -f demangler-fuzzer
109 rm -f core
110 clean: mostlyclean
111 distclean: clean
112 rm -f Makefile
113 maintainer-clean realclean: distclean
114
115 Makefile: $(srcdir)/Makefile.in ../config.status
116 CONFIG_FILES=testsuite/Makefile CONFIG_HEADERS= \
117 cd .. && $(SHELL) ./config.status
This page took 0.1646 seconds and 4 git commands to generate.