]> andersk Git - udis86.git/blame_incremental - libudis86/Makefile.am
Use the public http URI to docbook.xsl.
[udis86.git] / libudis86 / Makefile.am
... / ...
CommitLineData
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
23PYTHON = /usr/bin/env python
24
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
31itab.c itab.h: ../docs/x86/optable.xml opgen.py
32 $(PYTHON) ./opgen.py $<
33
34clean-local:
35 rm -rf itab.c itab.h
This page took 0.025237 seconds and 5 git commands to generate.