]> andersk Git - udis86.git/blame - libudis86/Makefile.am
Initial commit
[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
23# DLLs may not contain undefined symbol references. We have the linker
24# check this explicitly.
25if TARGET_WINDOWS
26libudis86_la_LDFLAGS=-no-undefined -version-info 0:0:0
27endif
28
29itab.c itab.h: ../docs/x86optable.xml opgen.py
30 python ./opgen.py $<
31
32clean-local:
33 rm -rf itab.c itab.h
This page took 0.065901 seconds and 5 git commands to generate.