You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
550 B

  1. include $(top_srcdir)/common.mk
  2. METASOURCES = AUTO
  3. noinst_LTLIBRARIES = libserver.la
  4. noinst_HEADERS = server.h telnet_server.h gdb_server.h
  5. libserver_la_SOURCES = server.c telnet_server.c gdb_server.c
  6. libserver_la_SOURCES += server_stubs.c
  7. libserver_la_CFLAGS =
  8. if IS_MINGW
  9. # FD_* macros are sloppy with their signs on MinGW32 platform
  10. libserver_la_CFLAGS += -Wno-sign-compare
  11. endif
  12. # tcl server addons
  13. noinst_HEADERS += tcl_server.h
  14. libserver_la_SOURCES += tcl_server.c
  15. EXTRA_DIST = \
  16. startup.tcl
  17. MAINTAINERCLEANFILES = $(srcdir)/Makefile.in