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.
 
 
 
 
 
 

68 lines
1.1 KiB

  1. AM_CPPFLAGS = \
  2. -I$(top_srcdir)/src \
  3. -I$(top_builddir)/src \
  4. -DPKGDATADIR=\"$(pkgdatadir)\"
  5. METASOURCES = AUTO
  6. noinst_LTLIBRARIES = libhelper.la
  7. if ECOSBOARD
  8. CONFIGFILES =
  9. else
  10. CONFIGFILES = options.c jim.c jim-eventloop.c
  11. endif
  12. libhelper_la_SOURCES = \
  13. binarybuffer.c \
  14. $(CONFIGFILES) \
  15. configuration.c \
  16. log.c \
  17. command.c \
  18. time_support.c \
  19. replacements.c \
  20. fileio.c \
  21. membuf.c
  22. if IOUTIL
  23. libhelper_la_SOURCES += ioutil.c
  24. else
  25. libhelper_la_SOURCES += ioutil_stubs.c
  26. endif
  27. libhelper_la_CFLAGS =
  28. if IS_MINGW
  29. # FD_* macros are sloppy with their signs on MinGW32 platform
  30. libhelper_la_CFLAGS += -Wno-sign-compare
  31. endif
  32. noinst_HEADERS = \
  33. binarybuffer.h \
  34. configuration.h \
  35. ioutil.h \
  36. types.h \
  37. log.h \
  38. command.h \
  39. membuf.h \
  40. time_support.h \
  41. replacements.h \
  42. fileio.h \
  43. jim.h \
  44. jim-eventloop.h \
  45. system.h \
  46. bin2char.c
  47. EXTRA_DIST = startup.tcl
  48. BIN2C = bin2char$(EXEEXT_FOR_BUILD)
  49. BUILT_SOURCES = $(BIN2C)
  50. $(BIN2C): bin2char.c
  51. ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} $(srcdir)/bin2char.c -o $@
  52. CLEANFILES = bin2char$(EXEEXT_FOR_BUILD)
  53. MAINTAINERCLEANFILES = $(srcdir)/Makefile.in