1## Process this file with automake to create Makefile.in 2## 3## Copyright (C) 2002-2010 Red Hat, Inc. 4## This file is part of elfutils. 5## 6## This file is free software; you can redistribute it and/or modify 7## it under the terms of either 8## 9## * the GNU Lesser General Public License as published by the Free 10## Software Foundation; either version 3 of the License, or (at 11## your option) any later version 12## 13## or 14## 15## * the GNU General Public License as published by the Free 16## Software Foundation; either version 2 of the License, or (at 17## your option) any later version 18## 19## or both in parallel, as here. 20## 21## elfutils is distributed in the hope that it will be useful, but 22## WITHOUT ANY WARRANTY; without even the implied warranty of 23## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 24## General Public License for more details. 25## 26## You should have received copies of the GNU General Public License and 27## the GNU Lesser General Public License along with this program. If 28## not, see <http://www.gnu.org/licenses/>. 29## 30include $(top_srcdir)/config/eu.am 31AM_CPPFLAGS += -I$(top_srcdir)/libelf -I$(top_srcdir)/libebl -I$(top_srcdir)/libdw -I$(top_srcdir)/libdwelf 32 33GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) 34VERSION = 1 35 36lib_LIBRARIES = libasm.a 37noinst_LIBRARIES = libasm_pic.a 38noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so) 39pkginclude_HEADERS = libasm.h 40 41libasm_a_SOURCES = asm_begin.c asm_abort.c asm_end.c asm_error.c \ 42 asm_getelf.c asm_newscn.c asm_newscn_ingrp.c \ 43 asm_newsubscn.c asm_newsym.c asm_newcomsym.c \ 44 asm_newabssym.c \ 45 asm_newscngrp.c asm_scngrp_newsignature.c \ 46 asm_fill.c asm_align.c asm_addstrz.c \ 47 asm_addint8.c asm_adduint8.c \ 48 asm_addint16.c asm_adduint16.c \ 49 asm_addint32.c asm_adduint32.c \ 50 asm_addint64.c asm_adduint64.c \ 51 asm_adduleb128.c asm_addsleb128.c \ 52 disasm_begin.c disasm_cb.c disasm_end.c disasm_str.c \ 53 symbolhash.c 54 55libasm_pic_a_SOURCES = 56am_libasm_pic_a_OBJECTS = $(libasm_a_SOURCES:.c=.os) 57 58libasm_so_DEPS = ../lib/libeu.a ../libebl/libebl.a ../libelf/libelf.so ../libdw/libdw.so 59libasm_so_LDLIBS = $(libasm_so_DEPS) 60if USE_LOCKS 61libasm_so_LDLIBS += -lpthread 62endif 63 64libasm_so_LIBS = libasm_pic.a 65libasm_so_SOURCES = 66libasm.so$(EXEEXT): $(srcdir)/libasm.map $(libasm_so_LIBS) $(libasm_so_DEPS) 67 $(AM_V_CCLD)$(LINK) $(dso_LDFLAGS) -o $@ \ 68 -Wl,--soname,$@.$(VERSION) \ 69 -Wl,--version-script,$<,--no-undefined \ 70 -Wl,--whole-archive $(libasm_so_LIBS) -Wl,--no-whole-archive \ 71 $(libasm_so_LDLIBS) 72 @$(textrel_check) 73 $(AM_V_at)ln -fs $@ $@.$(VERSION) 74 75install: install-am libasm.so 76 $(mkinstalldirs) $(DESTDIR)$(libdir) 77 $(INSTALL_PROGRAM) libasm.so $(DESTDIR)$(libdir)/libasm-$(PACKAGE_VERSION).so 78 ln -fs libasm-$(PACKAGE_VERSION).so $(DESTDIR)$(libdir)/libasm.so.$(VERSION) 79 ln -fs libasm.so.$(VERSION) $(DESTDIR)$(libdir)/libasm.so 80 81uninstall: uninstall-am 82 rm -f $(DESTDIR)$(libdir)/libasm-$(PACKAGE_VERSION).so 83 rm -f $(DESTDIR)$(libdir)/libasm.so.$(VERSION) 84 rm -f $(DESTDIR)$(libdir)/libasm.so 85 rmdir --ignore-fail-on-non-empty $(DESTDIR)$(includedir)/elfutils 86 87noinst_HEADERS = libasmP.h symbolhash.h 88EXTRA_DIST = libasm.map 89 90CLEANFILES += $(am_libasm_pic_a_OBJECTS) libasm.so.$(VERSION) 91