2010-11-12 05:41:55 -06:00
|
|
|
include $(top_srcdir)/common.mk
|
2009-05-02 17:35:02 -05:00
|
|
|
|
2006-06-02 05:36:31 -05:00
|
|
|
METASOURCES = AUTO
|
2009-05-10 17:03:57 -05:00
|
|
|
noinst_LTLIBRARIES = libserver.la
|
2006-06-02 05:36:31 -05:00
|
|
|
noinst_HEADERS = server.h telnet_server.h gdb_server.h
|
2009-05-10 17:03:57 -05:00
|
|
|
libserver_la_SOURCES = server.c telnet_server.c gdb_server.c
|
2008-07-06 14:33:05 -05:00
|
|
|
|
2009-12-01 21:41:16 -06:00
|
|
|
libserver_la_SOURCES += server_stubs.c
|
2008-12-16 16:20:10 -06:00
|
|
|
|
2009-05-10 17:03:57 -05:00
|
|
|
libserver_la_CFLAGS =
|
2009-04-21 04:02:42 -05:00
|
|
|
if IS_MINGW
|
|
|
|
# FD_* macros are sloppy with their signs on MinGW32 platform
|
2009-05-10 17:03:57 -05:00
|
|
|
libserver_la_CFLAGS += -Wno-sign-compare
|
2009-04-21 04:02:42 -05:00
|
|
|
endif
|
2008-12-16 16:20:10 -06:00
|
|
|
|
2008-07-06 14:33:05 -05:00
|
|
|
# tcl server addons
|
|
|
|
noinst_HEADERS += tcl_server.h
|
2009-05-10 17:03:57 -05:00
|
|
|
libserver_la_SOURCES += tcl_server.c
|
2008-12-22 09:02:09 -06:00
|
|
|
|
2009-05-13 05:14:40 -05:00
|
|
|
EXTRA_DIST = \
|
2010-11-11 01:15:49 -06:00
|
|
|
startup.tcl
|
2009-05-13 05:14:40 -05:00
|
|
|
|
2009-06-09 05:28:16 -05:00
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|