Home | History | Annotate | Download | only in libelf
      1 ## Process this file with automake to create Makefile.in
      2 ## Configure input file for elfutils.
      3 ##
      4 ## Copyright (C) 1996-2001, 2002, 2003, 2004 Red Hat, Inc.
      5 ##
      6 ## This program is free software; you can redistribute it and/or modify
      7 ## it under the terms of the GNU General Public License as published by
      8 ## the Free Software Foundation, version 2.
      9 ##
     10 ## This program is distributed in the hope that it will be useful,
     11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 ## GNU General Public License for more details.
     14 ##
     15 ## You should have received a copy of the GNU General Public License
     16 ## along with this program; if not, write to the Free Software Foundation,
     17 ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     18 ##
     19 DEFS = -D_GNU_SOURCE -DHAVE_CONFIG_H
     20 # XXX gcc has a bug in that it generates warnings for internal symbols.
     21 # XXX Remove the conditional when gcc is fxied.
     22 if MUDFLAP
     23 AM_CFLAGS = -Wall -Wshadow
     24 else
     25 AM_CFLAGS = -Wall -Werror -Wshadow
     26 endif
     27 INCLUDES = -I$(srcdir) -I$(top_srcdir)/lib -I..
     28 GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include)
     29 VERSION = 1
     30 PACKAGE_VERSION = @PACKAGE_VERSION@
     31 
     32 LINT = splint
     33 
     34 lib_LIBRARIES = libelf.a
     35 if !MUDFLAP
     36 noinst_LIBRARIES = libelf_pic.a
     37 noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so)
     38 endif
     39 include_HEADERS = libelf.h gelf.h nlist.h
     40 
     41 euincludedir = $(includedir)/elfutils
     42 euinclude_HEADERS = elf-knowledge.h
     43 
     44 libelf_a_SOURCES = elf_version.c elf_hash.c elf_error.c elf_fill.c \
     45 		   elf_begin.c elf_next.c elf_rand.c elf_end.c elf_kind.c \
     46 		   gelf_getclass.c elf_getbase.c elf_getident.c \
     47 		   elf32_fsize.c elf64_fsize.c gelf_fsize.c \
     48 		   elf32_xlatetof.c elf32_xlatetom.c elf64_xlatetof.c \
     49 		   elf64_xlatetom.c gelf_xlate.c \
     50 		   elf32_getehdr.c elf64_getehdr.c gelf_getehdr.c \
     51 		   elf32_newehdr.c elf64_newehdr.c gelf_newehdr.c \
     52 		   gelf_update_ehdr.c \
     53 		   elf32_getphdr.c elf64_getphdr.c gelf_getphdr.c \
     54 		   elf32_newphdr.c elf64_newphdr.c gelf_newphdr.c \
     55 		   gelf_update_phdr.c \
     56 		   elf_getarhdr.c elf_getarsym.c \
     57 		   elf_rawfile.c elf_readall.c elf_cntl.c \
     58 		   elf_getscn.c elf_nextscn.c elf_ndxscn.c elf_newscn.c \
     59 		   elf32_getshdr.c elf64_getshdr.c gelf_getshdr.c \
     60 		   gelf_update_shdr.c \
     61 		   elf_strptr.c elf_rawdata.c elf_getdata.c elf_newdata.c \
     62 		   elf_flagelf.c elf_flagehdr.c elf_flagphdr.c elf_flagscn.c \
     63 		   elf_flagshdr.c elf_flagdata.c elf_memory.c \
     64 		   elf_update.c elf32_updatenull.c elf64_updatenull.c \
     65 		   elf32_updatefile.c elf64_updatefile.c \
     66 		   gelf_getsym.c gelf_update_sym.c \
     67 		   gelf_getversym.c gelf_getverneed.c gelf_getvernaux.c \
     68 		   gelf_getverdef.c gelf_getverdaux.c \
     69 		   gelf_getrel.c gelf_getrela.c \
     70 		   gelf_update_rel.c gelf_update_rela.c \
     71 		   gelf_getdyn.c gelf_update_dyn.c \
     72 		   gelf_getmove.c gelf_update_move.c \
     73 		   gelf_getsyminfo.c gelf_update_syminfo.c \
     74 		   gelf_xlatetof.c gelf_xlatetom.c \
     75 		   nlist.c \
     76 		   gelf_getsymshndx.c gelf_update_symshndx.c \
     77 		   gelf_update_versym.c gelf_update_verneed.c \
     78 		   gelf_update_vernaux.c gelf_update_verdef.c \
     79 		   gelf_update_verdaux.c \
     80 		   elf_getshnum.c elf_getshstrndx.c \
     81 		   gelf_checksum.c elf32_checksum.c elf64_checksum.c \
     82 		   gelf_rawchunk.c gelf_freechunk.c \
     83 		   libelf_crc32.c libelf_next_prime.c \
     84 		   elf_clone.c \
     85 		   gelf_getlib.c gelf_update_lib.c
     86 
     87 if !MUDFLAP
     88 libelf_pic_a_SOURCES =
     89 am_libelf_pic_a_OBJECTS = $(libelf_a_SOURCES:.c=.os)
     90 
     91 libelf_so_SOURCES =
     92 libelf.so: libelf_pic.a libelf.map
     93 	$(CC) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
     94 	      -Wl,--version-script,$(srcdir)/libelf.map,--no-undefined \
     95 	      -Wl,--soname,$@.$(VERSION),-z-defs
     96 	ln -fs $@ $@.$(VERSION)
     97 
     98 %.os: %.c %.o
     99 	if $(COMPILE) -c -o $@ -fpic -DPIC -DSHARED -MT $@ -MD -MP \
    100 	  -MF "$(DEPDIR)/$*.Tpo" `test -f '$<' || echo '$(srcdir)/'`$<; \
    101 	then cat "$(DEPDIR)/$*.Tpo" >> "$(DEPDIR)/$*.Po"; \
    102 	     rm -f "$(DEPDIR)/$*.Tpo"; \
    103 	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
    104 	fi
    105 
    106 install: install-am libelf.so
    107 	$(mkinstalldirs) $(DESTDIR)$(libdir)
    108 	$(INSTALL_PROGRAM) libelf.so $(DESTDIR)$(libdir)/libelf-$(PACKAGE_VERSION).so
    109 	ln -fs libelf-$(PACKAGE_VERSION).so $(DESTDIR)$(libdir)/libelf.so.$(VERSION)
    110 	ln -fs libelf.so.$(VERSION) $(DESTDIR)$(libdir)/libelf.so
    111 
    112 uninstall: uninstall-am
    113 	rm -f $(DESTDIR)$(libdir)/libelf-$(PACKAGE_VERSION).so
    114 	rm -f $(DESTDIR)$(libdir)/libelf.so.$(VERSION)
    115 	rm -f $(DESTDIR)$(libdir)/libelf.so
    116 endif
    117 
    118 .PSEUDO: lint
    119 lint:
    120 	$(LINT) $(DEFS) $(INCLUDES) $(GCC_INCLUDE) -f $(top_srcdir)/splint.rc \
    121 		$(addprefix $(srcdir)/,$(libelf_a_SOURCES))
    122 
    123 noinst_HEADERS = elf.h abstract.h common.h exttypes.h gelf_xlate.h libelfP.h \
    124 		 version_xlate.h dl-hash.h
    125 EXTRA_DIST = libelf.map
    126 
    127 CLEANFILES = $(am_libelf_pic_a_OBJECTS)
    128