add packaging
[platform/upstream/elfutils.git] / libcpu / Makefile.am
1 ## Process this file with automake to create Makefile.in
2 ##
3 ## Copyright (C) 2002-2012 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 ##
30 include $(top_srcdir)/config/eu.am
31 AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libebl \
32             -I$(srcdir)/../libdw -I$(srcdir)/../libasm
33 if BUILD_STATIC
34 AM_CFLAGS += $(fpic_CFLAGS)
35 endif
36 AM_CFLAGS += -fdollars-in-identifiers
37 LEXCOMPILE = $(LEX) $(LFLAGS) $(AM_LFLAGS) -P$(<F:lex.l=)
38 LEX_OUTPUT_ROOT = lex.$(<F:lex.l=)
39 AM_YFLAGS = -p$(<F:parse.y=)
40
41 noinst_LIBRARIES = libcpu.a libcpu_pic.a
42
43 noinst_HEADERS = i386_dis.h x86_64_dis.h
44
45 libcpu_a_SOURCES = i386_disasm.c x86_64_disasm.c bpf_disasm.c riscv_disasm.c
46
47 libcpu_pic_a_SOURCES =
48 am_libcpu_pic_a_OBJECTS = $(libcpu_a_SOURCES:.c=.os)
49
50 i386_gendis_SOURCES = i386_gendis.c i386_lex.l i386_parse.y
51
52 i386_disasm.o: i386.mnemonics $(srcdir)/i386_dis.h
53 x86_64_disasm.o: x86_64.mnemonics $(srcdir)/x86_64_dis.h
54
55 %_defs: $(srcdir)/defs/i386
56         $(AM_V_GEN)m4 -D$* -DDISASSEMBLER $< > $@T
57         $(AM_V_at)mv -f $@T $@
58
59 if MAINTAINER_MODE
60 noinst_HEADERS += memory-access.h i386_parse.h i386_data.h
61
62 noinst_PROGRAMS = i386_gendis$(EXEEXT)
63
64 # i386_gendis doesn't clean up, ignore leaks.
65 # It is just a build tool to generate source in maintainer mode.
66 if USE_ADDRESS_SANITIZER
67 GENDIS_ENV=env ASAN_OPTIONS=detect_leaks=0
68 else
69 GENDIS_ENV=
70 endif
71
72 $(srcdir)/%_dis.h: %_defs i386_gendis$(EXEEXT)
73         $(AM_V_GEN) $(GENDIS_ENV) ./i386_gendis$(EXEEXT) $< > $@T
74         $(AM_V_at)mv -f $@T $@
75
76 else
77
78 $(srcdir)/%_dis.h:
79         @echo '*** missing $@; configure with --enable-maintainer-mode'
80         @false
81
82 endif
83
84 %.mnemonics: %_defs
85         $(AM_V_GEN)sed '1,/^%%/d;/^#/d;/^[[:space:]]*$$/d;s/[^:]*:\([^[:space:]]*\).*/MNE(\1)/;s/{[^}]*}//g;/INVALID/d' \
86           $< | sort -u > $@
87
88 i386_lex_no_Werror = yes
89
90 libeu = ../lib/libeu.a
91
92 i386_lex_CFLAGS = -Wno-unused-label -Wno-unused-function -Wno-sign-compare \
93                   -Wno-implicit-fallthrough
94 i386_parse.o: i386_parse.c i386.mnemonics
95 i386_parse_CFLAGS = -DNMNES="`wc -l < i386.mnemonics`"
96 i386_lex.o: i386_parse.h
97 i386_gendis_LDADD = $(libeu) -lm $(obstack_LIBS)
98
99 i386_parse.h: i386_parse.c ;
100
101 bpf_disasm_CFLAGS = -Wno-format-nonliteral
102
103 EXTRA_DIST = defs/i386
104
105 MOSTLYCLEANFILES = $(am_libcpu_pic_a_OBJECTS)
106 CLEANFILES += $(foreach P,i386 x86_64,$P_defs $P.mnemonics)
107 MAINTAINERCLEANFILES = $(foreach P,i386 x86_64, $P_dis.h)