1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
#
#
# Copyright (C) 2000,2003,2004,2006 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of version 2.1 of the GNU Lesser General Public License
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# Further, this software is distributed without any warranty that it is
# free of the rightful claim of any third person regarding infringement
# or the like. Any license provided herein, whether implied or
# otherwise, applies only to this software file. Patent licenses, if
# any, provided herein do not apply to combinations of this program with
# other software, or any other product whatsoever.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
# USA.
#
# Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
# Mountain View, CA 94043, or:
#
# http://www.sgi.com
#
# For further information regarding this notice, see:
#
# http://oss.sgi.com/projects/GenInfo/NoticeExplan
#
#
#
# Makefile for libdwarf
# This is made very simple so it should work with
# any 'make'.
#
srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
SHELL = /bin/sh
CC = @CC@
AR = @AR@
#ARFLAGS = @ARFLAGS@
RM = rm
RANLIB = @RANLIB@
DEFS = @DEFS@
LIBS = @LIBS@
INCLUDES = -I. -I$(srcdir)
CFLAGS = @CFLAGS@ $(INCLUDES)
# For more checking add -DWANT_LIBBDWARF_MALLOC_CHECK=1 to CFLAGS
LDFLAGS = @LDFLAGS@
BUILD_BASE = .
OBJS= dwarf_abbrev.o \
dwarf_alloc.o \
dwarf_arange.o \
dwarf_die_deliv.o \
dwarf_elf_access.o \
dwarf_error.o \
dwarf_form.o \
dwarf_frame.o \
dwarf_frame2.o \
dwarf_frame3.o \
dwarf_funcs.o \
dwarf_global.o \
dwarf_init_finish.o \
dwarf_line.o \
dwarf_line2.o \
dwarf_loc.o \
dwarf_original_elf_init.o \
dwarf_query.o \
dwarf_string.o \
dwarf_stubs.o \
dwarf_pubtypes.o \
dwarf_types.o \
dwarf_util.o \
dwarf_leb.o \
dwarf_vars.o \
dwarf_weaks.o \
dwarf_addr_finder.o \
dwarf_sort_line.o \
dwarf_print_lines.o \
dwarf_macro.o \
malloc_check.o \
pro_alloc.o \
pro_arange.o \
pro_die.o \
pro_encode_nm.o \
pro_error.o \
pro_expr.o \
pro_finish.o \
pro_forms.o \
pro_funcs.o \
pro_frame.o \
pro_init.o \
pro_line.o \
pro_reloc.o \
pro_reloc_stream.o \
pro_reloc_symbolic.o \
pro_pubnames.o \
pro_section.o \
pro_types.o \
pro_vars.o \
pro_macinfo.o \
pro_weaks.o
all: @build_shared@ @build_nonshared@
libdwarf.a: $(OBJS)
$(AR) $(ARFLAGS) $@ $(OBJS)
libdwarf.so: $(OBJS)
$(CC) $(CFLAGS) -shared $(OBJS) -o $@
none:
echo "do nothing"
#
# The following are very SGI-centric
# psroff is just a troff formatter.
# the .mm files are in ATT/USL/USG mm form.
#
docbld:pdfbld
pdfbld: libdwarf2.1.pdf libdwarf2p.1.pdf dwarf.v2.pdf index.v2.pdf mips_extensions.pdf
#Oriented to using gsroff now.
TROFF=/usr/bin/groff
TROFFDEV="-T ps"
TROFFDEV=
PSTOPDF=/usr/bin/ps2pdf
# pr expands tabs to spaces: this avoids problems with tab
# interpretation
# The warning about 'cant break line' is a too-long line used
# in the table of contents.
# Ignore the warning (and those like it).
libdwarf2.1.pdf: $(BUILD_BASE)/libdwarf2.1.mm
-pr -t -e $(BUILD_BASE)/libdwarf2.1.mm \
| tbl | $(TROFF) $(TROFFDEV) -mm >libdwarf2.1.ps
$(PSTOPDF) libdwarf2.1.ps libdwarf2.1.pdf
libdwarf2p.1.pdf: $(BUILD_BASE)/libdwarf2p.1.mm
-pr -t -e $(BUILD_BASE)/libdwarf2p.1.mm \
| tbl | $(TROFF) $(TROFFDEV) -mm >libdwarf2p.1.ps
$(PSTOPDF) libdwarf2p.1.ps libdwarf2p.1.pdf
# At present, the newIndex is not usable: we have no tools
# to build a new index page at the moment.
dwarf.v2.pdf: $(BUILD_BASE)/dwarf.v2.mm
-pic $(BUILD_BASE)/dwarf.v2.mm \
| tbl | $(TROFF) $(TROFFDEV) -mm >dwarf.v2.ps 2> newIndex
$(PSTOPDF) dwarf.v2.ps dwarf.v2.pdf
# the index is only useful till the document changes: it is
# not autmatically correct. It was prepared by tools internal
# to USL/Novell
index.v2.pdf: index.v2.mm
-pic index.v2.mm | tbl | $(TROFF) $(TROFFDEV) -mm >index.v2.ps
$(PSTOPDF) index.v2.ps index.v2.pdf
mips_extensions.pdf: mips_extensions.mm
-pr $(TROFFDEV) -e mips_extensions.mm | tbl | \
$(TROFF) $(TROFFDEV) -mm >mips_extensions.ps
$(PSTOPDF) mips_extensions.ps mips_extensions.pdf
clean:
rm -f *.o libdwarf.a
rm -f libdwarf.so
distclean: clean
rm -f config.status config.log config.cache config.h
shar:
@echo "shar not set up yet"
dist:
@echo "dist not set up yet"
|