inital commit. currently all winapi

This commit is contained in:
2016-04-03 17:04:20 +02:00
commit 3b681758f4
76 changed files with 13747 additions and 0 deletions

52
libudis86/Makefile.am Normal file
View File

@@ -0,0 +1,52 @@
#
# -- udis86/libudis86
#
PYTHON = @PYTHON@
OPTABLE = @top_srcdir@/docs/x86/optable.xml
MAINTAINERCLEANFILES = Makefile.in
lib_LTLIBRARIES = libudis86.la
libudis86_la_SOURCES = \
itab.c \
decode.c \
syn.c \
syn-intel.c \
syn-att.c \
udis86.c \
udint.h \
syn.h \
decode.h
include_ladir = ${includedir}/libudis86
include_la_HEADERS = \
types.h \
extern.h \
itab.h
BUILT_SOURCES = \
itab.c \
itab.h
#
# DLLs may not contain undefined symbol references.
# We have the linker check this explicitly.
#
if TARGET_WINDOWS
libudis86_la_LDFLAGS = -no-undefined -version-info 0:0:0
endif
itab.c itab.h: $(OPTABLE) \
$(top_srcdir)/scripts/ud_itab.py \
$(top_srcdir)/scripts/ud_opcode.py \
$(top_srcdir)/scripts/ud_optable.py
$(PYTHON) $(top_srcdir)/scripts/ud_itab.py $(OPTABLE) $(srcdir)
clean-local:
rm -rf $(BUILT_SOURCES)
maintainer-clean-local: