]> andersk Git - udis86.git/blob - libudis86/Makefile.am
Initial commit
[udis86.git] / libudis86 / Makefile.am
1 lib_LTLIBRARIES = libudis86.la
2
3 include_ladir = ${includedir}
4 libudis86_ladir = ${includedir}/libudis86
5
6 libudis86_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
21 libudis86_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.
25 if TARGET_WINDOWS
26 libudis86_la_LDFLAGS=-no-undefined -version-info 0:0:0
27 endif
28
29 itab.c itab.h: ../docs/x86optable.xml opgen.py
30         python ./opgen.py $<
31
32 clean-local:
33         rm -rf itab.c itab.h
This page took 0.037349 seconds and 5 git commands to generate.