mirror of
https://github.com/openharmony/third_party_elfutils.git
synced 2026-07-18 17:24:31 -04:00
87 lines
2.9 KiB
Makefile
87 lines
2.9 KiB
Makefile
## Process this file with automake to create Makefile.in
|
|
##
|
|
## Copyright (C) 2002, 2004, 2005 Red Hat, Inc.
|
|
##
|
|
## This program is Open Source software; you can redistribute it and/or
|
|
## modify it under the terms of the Open Software License version 1.0 as
|
|
## published by the Open Source Initiative.
|
|
##
|
|
## You should have received a copy of the Open Software License along
|
|
## with this program; if not, you may obtain a copy of the Open Software
|
|
## License version 1.0 from http://www.opensource.org/licenses/osl.php or
|
|
## by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
|
|
## 3001 King Ranch Road, Ukiah, CA 95482.
|
|
##
|
|
DEFS = -D_GNU_SOURCE -DHAVE_CONFIG_H
|
|
if MUDFLAP
|
|
AM_CFLAGS = -fmudflap
|
|
else
|
|
AM_CFLAGS =
|
|
endif
|
|
AM_CFLAGS += -std=gnu99 -Wall -Wshadow -Werror -Wunused -Wextra -Wformat=2
|
|
INCLUDES = -I. -I$(srcdir) -I.. -I$(top_srcdir)/libelf -I$(top_srcdir)/libebl \
|
|
-I$(top_srcdir)/lib
|
|
GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include)
|
|
VERSION = 1
|
|
|
|
lib_LIBRARIES = libasm.a
|
|
if !MUDFLAP
|
|
noinst_LIBRARIES = libasm_pic.a
|
|
noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so)
|
|
endif
|
|
euincludedir = ${includedir}/elfutils
|
|
euinclude_HEADERS = libasm.h
|
|
|
|
libasm_a_SOURCES = asm_begin.c asm_abort.c asm_end.c asm_error.c \
|
|
asm_getelf.c asm_newscn.c asm_newscn_ingrp.c \
|
|
asm_newsubscn.c asm_newsym.c asm_newcomsym.c \
|
|
asm_newabssym.c \
|
|
asm_newscngrp.c asm_scngrp_newsignature.c \
|
|
asm_fill.c asm_align.c asm_addstrz.c \
|
|
asm_addint8.c asm_adduint8.c \
|
|
asm_addint16.c asm_adduint16.c \
|
|
asm_addint32.c asm_adduint32.c \
|
|
asm_addint64.c asm_adduint64.c \
|
|
asm_adduleb128.c asm_addsleb128.c \
|
|
symbolhash.c
|
|
|
|
if !MUDFLAP
|
|
libasm_pic_a_SOURCES =
|
|
am_libasm_pic_a_OBJECTS = $(libasm_a_SOURCES:.c=.os)
|
|
|
|
libasm_so_SOURCES =
|
|
libasm.so: libasm_pic.a libasm.map
|
|
$(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
|
|
-Wl,--version-script,$(srcdir)/libasm.map,--no-undefined \
|
|
-Wl,--soname,$@.$(VERSION) \
|
|
../libebl/libebl.a ../libelf/libelf.so
|
|
if readelf -d $@ | fgrep -q TEXTREL; then exit 1; fi
|
|
ln -fs $@ $@.$(VERSION)
|
|
|
|
|
|
%.os: %.c %.o
|
|
if $(COMPILE) -c -o $@ -fpic -DPIC -DSHARED -MT $@ -MD -MP \
|
|
-MF "$(DEPDIR)/$*.Tpo" `test -f '$<' || echo '$(srcdir)/'`$<; \
|
|
then cat "$(DEPDIR)/$*.Tpo" >> "$(DEPDIR)/$*.Po"; \
|
|
rm -f "$(DEPDIR)/$*.Tpo"; \
|
|
else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
|
|
fi
|
|
|
|
install: install-am libasm.so
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
|
$(INSTALL_PROGRAM) libasm.so $(DESTDIR)$(libdir)/libasm-$(PACKAGE_VERSION).so
|
|
ln -fs libasm-$(PACKAGE_VERSION).so $(DESTDIR)$(libdir)/libasm.so.$(VERSION)
|
|
ln -fs libasm.so.$(VERSION) $(DESTDIR)$(libdir)/libasm.so
|
|
|
|
uninstall: uninstall-am
|
|
rm -f $(DESTDIR)$(libdir)/libasm-$(PACKAGE_VERSION).so
|
|
rm -f $(DESTDIR)$(libdir)/libasm.so.$(VERSION)
|
|
rm -f $(DESTDIR)$(libdir)/libasm.so
|
|
rmdir --ignore-fail-on-non-empty $(DESTDIR)$(includedir)/elfutils
|
|
endif
|
|
|
|
noinst_HEADERS = libasmP.h symbolhash.h
|
|
EXTRA_DIST = libasm.map
|
|
|
|
CLEANFILES = $(am_libasm_pic_a_OBJECTS) *.gcno *.gcda
|