forked from auracaster/openocd
Change-Id: I11f8bc8553957e2ff083c09e72e16881e4d3bb6f Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/3865 Tested-by: jenkins Reviewed-by: Paul Fertser <fercerpav@gmail.com>
20 lines
435 B
Makefile
20 lines
435 B
Makefile
noinst_LTLIBRARIES += %D%/libserver.la
|
|
%C%_libserver_la_SOURCES = \
|
|
%D%/server.c \
|
|
%D%/telnet_server.c \
|
|
%D%/gdb_server.c \
|
|
%D%/server.h \
|
|
%D%/telnet_server.h \
|
|
%D%/gdb_server.h \
|
|
%D%/server_stubs.c \
|
|
%D%/tcl_server.c \
|
|
%D%/tcl_server.h
|
|
|
|
%C%_libserver_la_CFLAGS =
|
|
if IS_MINGW
|
|
# FD_* macros are sloppy with their signs on MinGW32 platform
|
|
%C%_libserver_la_CFLAGS += -Wno-sign-compare
|
|
endif
|
|
|
|
STARTUP_TCL_SRCS += %D%/startup.tcl
|