2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libbacktrace / Makefile.am
blob035986bbf96c19c55b33dbbb54f12a302b1e1b85
1 # Makefile.am -- Backtrace Makefile.
2 # Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
8 #     (1) Redistributions of source code must retain the above copyright
9 #     notice, this list of conditions and the following disclaimer. 
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.  
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.
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.
32 ACLOCAL_AMFLAGS = -I .. -I ../config
34 AM_CPPFLAGS = -I $(top_srcdir)/../include -I $(top_srcdir)/../libgcc \
35         -I ../libgcc
37 AM_CFLAGS = $(EXTRA_FLAGS) $(WARN_FLAGS) $(PIC_FLAG)
39 noinst_LTLIBRARIES = libbacktrace.la
41 libbacktrace_la_SOURCES = \
42         backtrace.h \
43         dwarf.c \
44         fileline.c \
45         internal.h \
46         posix.c \
47         print.c \
48         state.c
50 BACKTRACE_FILES = \
51         backtrace.c \
52         simple.c \
53         nounwind.c
55 FORMAT_FILES = \
56         elf.c \
57         unknown.c
59 VIEW_FILES = \
60         read.c \
61         mmapio.c
63 ALLOC_FILES = \
64         alloc.c \
65         mmap.c
67 EXTRA_libbacktrace_la_SOURCES = \
68         $(BACKTRACE_FILES) \
69         $(FORMAT_FILES) \
70         $(VIEW_FILES) \
71         $(ALLOC_FILES)
73 libbacktrace_la_LIBADD = \
74         $(BACKTRACE_FILE) \
75         $(FORMAT_FILE) \
76         $(VIEW_FILE) \
77         $(ALLOC_FILE)
79 libbacktrace_la_DEPENDENCIES = $(libbacktrace_la_LIBADD)
81 # Testsuite.
83 check_PROGRAMS =
85 TESTS = $(check_PROGRAMS)
87 if NATIVE
89 btest_SOURCES = btest.c
90 btest_CFLAGS = $(AM_CFLAGS) -g -O
91 btest_LDADD = libbacktrace.la
93 check_PROGRAMS += btest
95 endif NATIVE
97 # We can't use automake's automatic dependency tracking, because it
98 # breaks when using bootstrap-lean.  Automatic dependency tracking
99 # with GCC bootstrap will cause some of the objects to depend on
100 # header files in prev-gcc/include, e.g., stddef.h and stdarg.h.  When
101 # using bootstrap-lean, prev-gcc is removed after each stage.  When
102 # running "make install", those header files will be gone, causing the
103 # library to be rebuilt at install time.  That may not succeed.
105 # These manual dependencies do not include dependencies on unwind.h,
106 # even though that is part of GCC, because where to find it depends on
107 # whether we are being built as a host library or a target library.
109 INCDIR = $(top_srcdir)/../include
110 alloc.lo: config.h backtrace.h internal.h
111 backtrace.lo: config.h backtrace.h
112 btest.lo: (INCDIR)/filenames.h backtrace.h backtrace-supported.h
113 dwarf.lo: config.h $(INCDIR)/dwarf2.h $(INCDIR)/dwarf2.def \
114         $(INCDIR)/filenames.h backtrace.h internal.h
115 elf.lo: config.h backtrace.h internal.h
116 fileline.lo: config.h backtrace.h internal.h
117 mmap.lo: config.h backtrace.h internal.h
118 mmapio.lo: config.h backtrace.h internal.h
119 nounwind.lo: config.h internal.h
120 posix.lo: config.h backtrace.h internal.h
121 print.lo: config.h backtrace.h internal.h
122 read.lo: config.h backtrace.h internal.h
123 simple.lo: config.h backtrace.h internal.h
124 state.lo: config.h backtrace.h backtrace-supported.h internal.h
125 unknown.lo: config.h backtrace.h internal.h