1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
INCLUDES = @SERVER_DEPENDENCIES_CFLAGS@ @server_cflags@
lib_LTLIBRARIES = libmonodebuggerserver.la
EXTRA_libmonodebuggerserver_la_SOURCES = \
i386-arch.c \
i386-arch.h \
x86-arch.h \
x86_64-arch.h \
x86_64-arch.c \
x86-linux-ptrace.c \
x86-linux-ptrace.h \
x86-ptrace.c \
x86-ptrace.h
if PLATFORM_POWERPC
platform_sources =
else
platform_sources = x86-ptrace.c
endif
libmonodebuggerserver_la_SOURCES = \
server.h \
library.c \
$(platform_sources) \
breakpoints.c \
breakpoints.h \
mutex.c \
mutex.h \
thread-db.c \
thread-db.h \
linux-proc-service.h
libmonodebuggerserver_la_LIBADD = \
@SERVER_DEPENDENCIES_LIBS@ -lthread_db \
../arch/libmonodebuggerbfdglue.la
libmonodebuggerserver_la_LDFLAGS = \
-no-undefined -export-dynamic -shared
CLEANFILES = lib*.a lib*.dll
|