]> andersk Git - udis86.git/blame - libudis86/Makefile.am
Use the public http URI to docbook.xsl.
[udis86.git] / libudis86 / Makefile.am
CommitLineData
bbe45369 1lib_LTLIBRARIES = libudis86.la
2
3include_ladir = ${includedir}
4libudis86_ladir = ${includedir}/libudis86
5
6libudis86_la_SOURCES = itab.c \
7 input.c \
8 decode.c \
9 syn.c \
10 syn-intel.c \
11 syn-att.c \
12 udis86.c \
13 input.h \
14 syn.h \
15 decode.h \
16 extern.h \
17 types.h \
18 itab.h \
19 opgen.py
20
21libudis86_la_HEADERS = types.h extern.h itab.h
22
d2623857 23PYTHON = /usr/bin/env python
24
bbe45369 25# DLLs may not contain undefined symbol references. We have the linker
26# check this explicitly.
27if TARGET_WINDOWS
28libudis86_la_LDFLAGS=-no-undefined -version-info 0:0:0
29endif
30
d2623857 31itab.c itab.h: ../docs/x86/optable.xml opgen.py
32 $(PYTHON) ./opgen.py $<
bbe45369 33
34clean-local:
35 rm -rf itab.c itab.h
This page took 0.128 seconds and 5 git commands to generate.