]> git.ipfire.org Git - thirdparty/gcc.git/blob - libbacktrace/Makefile.am
dwarf.c (free_line_header): Don't free dirs if dirs_count == 0.
[thirdparty/gcc.git] / libbacktrace / Makefile.am
1 # Makefile.am -- Backtrace Makefile.
2 # Copyright (C) 2012-2017 Free Software Foundation, Inc.
3
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7
8 # (1) Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10
11 # (2) Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in
13 # the documentation and/or other materials provided with the
14 # distribution.
15
16 # (3) The name of the author may not be used to
17 # endorse or promote products derived from this software without
18 # specific prior written permission.
19
20 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 # DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 # POSSIBILITY OF SUCH DAMAGE.
31
32 ACLOCAL_AMFLAGS = -I .. -I ../config
33
34 AM_CPPFLAGS = -I $(top_srcdir)/../include -I $(top_srcdir)/../libgcc \
35 -I ../libgcc
36
37 AM_CFLAGS = $(EXTRA_FLAGS) $(WARN_FLAGS) $(PIC_FLAG)
38
39 noinst_LTLIBRARIES = libbacktrace.la
40
41 libbacktrace_la_SOURCES = \
42 backtrace.h \
43 atomic.c \
44 dwarf.c \
45 fileline.c \
46 internal.h \
47 posix.c \
48 print.c \
49 sort.c \
50 state.c
51
52 BACKTRACE_FILES = \
53 backtrace.c \
54 simple.c \
55 nounwind.c
56
57 FORMAT_FILES = \
58 elf.c \
59 pecoff.c \
60 unknown.c
61
62 VIEW_FILES = \
63 read.c \
64 mmapio.c
65
66 ALLOC_FILES = \
67 alloc.c \
68 mmap.c
69
70 EXTRA_libbacktrace_la_SOURCES = \
71 $(BACKTRACE_FILES) \
72 $(FORMAT_FILES) \
73 $(VIEW_FILES) \
74 $(ALLOC_FILES)
75
76 libbacktrace_la_LIBADD = \
77 $(BACKTRACE_FILE) \
78 $(FORMAT_FILE) \
79 $(VIEW_FILE) \
80 $(ALLOC_FILE)
81
82 libbacktrace_la_DEPENDENCIES = $(libbacktrace_la_LIBADD)
83
84 # Testsuite.
85
86 check_PROGRAMS =
87
88 TESTS = $(check_PROGRAMS)
89
90 if NATIVE
91
92 btest_SOURCES = btest.c
93 btest_CFLAGS = $(AM_CFLAGS) -g -O
94 btest_LDADD = libbacktrace.la
95
96 check_PROGRAMS += btest
97
98 stest_SOURCES = stest.c
99 stest_LDADD = libbacktrace.la
100
101 check_PROGRAMS += stest
102
103 edtest_SOURCES = edtest.c edtest2_build.c
104 edtest_LDADD = libbacktrace.la
105
106 check_PROGRAMS += edtest
107
108 edtest2_build.c: gen_edtest2_build; @true
109 gen_edtest2_build: $(srcdir)/edtest2.c
110 cat $(srcdir)/edtest2.c > tmp-edtest2_build.c
111 $(SHELL) $(srcdir)/../move-if-change tmp-edtest2_build.c edtest2_build.c
112 echo timestamp > $@
113
114 endif NATIVE
115
116 # We can't use automake's automatic dependency tracking, because it
117 # breaks when using bootstrap-lean. Automatic dependency tracking
118 # with GCC bootstrap will cause some of the objects to depend on
119 # header files in prev-gcc/include, e.g., stddef.h and stdarg.h. When
120 # using bootstrap-lean, prev-gcc is removed after each stage. When
121 # running "make install", those header files will be gone, causing the
122 # library to be rebuilt at install time. That may not succeed.
123
124 # These manual dependencies do not include dependencies on unwind.h,
125 # even though that is part of GCC, because where to find it depends on
126 # whether we are being built as a host library or a target library.
127
128 INCDIR = $(top_srcdir)/../include
129 alloc.lo: config.h backtrace.h internal.h
130 backtrace.lo: config.h backtrace.h internal.h
131 btest.lo: (INCDIR)/filenames.h backtrace.h backtrace-supported.h
132 dwarf.lo: config.h $(INCDIR)/dwarf2.h $(INCDIR)/dwarf2.def \
133 $(INCDIR)/filenames.h backtrace.h internal.h
134 elf.lo: config.h backtrace.h internal.h
135 fileline.lo: config.h backtrace.h internal.h
136 mmap.lo: config.h backtrace.h internal.h
137 mmapio.lo: config.h backtrace.h internal.h
138 nounwind.lo: config.h internal.h
139 pecoff.lo: config.h backtrace.h internal.h
140 posix.lo: config.h backtrace.h internal.h
141 print.lo: config.h backtrace.h internal.h
142 read.lo: config.h backtrace.h internal.h
143 simple.lo: config.h backtrace.h internal.h
144 sort.lo: config.h backtrace.h internal.h
145 stest.lo: config.h backtrace.h internal.h
146 state.lo: config.h backtrace.h backtrace-supported.h internal.h
147 unknown.lo: config.h backtrace.h internal.h