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.

Makefile.am 550 B

Update autotools scripts to require automake 1.6. The configure.in script already required autoconf 2.59 (circa 2006), so there is no reason to support versions of automake older than 1.6 (circa 2002). The first part of this patch upgrades the configure.in script: 1. Use current calling conventions for the AC_INIT and AM_INIT_AUTOMAKE macros, bringing their usage up-to-date with the version of autoconf already specified by AC_PREREQ. 2. Add AC_CONFIG_SRCDIR macro, required by new version of AC_INIT. 3. Automatically enable all of automake's warnings except Makefile portability (which OpenOCD violates by using GNU make's $(wildcard)). [[ While automake has its own -Werror option, I did not enabled it due to existing warnings. ]] 4. Add the missing AM_PROG_C_O check, required by the build rules for openocd.o in src/Makefile.am. 5. Adjust version number to show progress toward the next release. 6. Include a bug reporting e-mail address to direct users to this list. This patch makes the following adjustments to the Makefile.am files: 1. Update AUTOMAKE_OPTIONS to require automake version 1.6 2. Rewrite all deprecated INCLUDES assignments as AM_CPPFLAGS 3. Clean-up all AM_CPPFLAGS declarations to be patch-friendly. 4. Remove vestigial references to $(all_includes) 5. Remove erroneous references to @CPPFLAGS@ (only use AM_CPPFLAGS) 6. Remove unused -I and -D directives in helper/, flash/, target/ git-svn-id: svn://svn.berlios.de/openocd/trunk@1591 b42882b7-edfa-0310-969c-e2dbd0fdcd60
15 years ago
1234567891011121314151617181920212223
  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