eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
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 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. AUTOMAKE_OPTIONS = subdir-objects
  2. localedir = $(datadir)/locale
  3. xdgdatadir = @XDGDATADIR@
  4. mimedir = $(xdgdatadir)/mime
  5. xmldir = $(mimedir)/packages
  6. AM_LDFLAGS = ${LTLIBINTL}
  7. AM_CXXFLAGS = -Isrc/include -Isrc
  8. ACLOCAL_AMFLAGS = -I m4
  9. bin_PROGRAMS =
  10. lib_LTLIBRARIES =
  11. man1_MANS =
  12. pkgdata_DATA =
  13. noinst_bin_PROGRAMS =
  14. noinst_LIBRARIES =
  15. noinst_bindir =
  16. EXTRA_DIST = config.rpath ChangeLog
  17. CLEANFILES =
  18. SUBDIRS =
  19. ############################# libtool #########################################
  20. EXTRA_DIST += config.guess config.sub ltmain.sh
  21. # Increment if the interface has changed and is not backward compatible
  22. CURRENT=0
  23. # Increment if source files have changed
  24. # Reset to 0 if the interface has changed
  25. REVISION=0
  26. # Increment if the interface is backward compatible (superset)
  27. # Reset to 0 if the interface is not backward compatible
  28. AGE=0
  29. LIBUCD_VERSION=$(CURRENT):$(REVISION):$(AGE)
  30. ############################# ChangeLog #######################################
  31. ChangeLog:
  32. git log > ChangeLog
  33. dist-hook: ChangeLog
  34. .PHONY: ChangeLog
  35. EXTRA_DIST += ChangeLog
  36. ############################# Unicode Character Database ######################
  37. src/case.cpp: tools/case.py tools/ucd.py
  38. tools/case.py ${UCD_ROOTDIR} > $@
  39. src/categories.cpp: tools/categories.py tools/ucd.py
  40. tools/categories.py ${UCD_ROOTDIR} > $@
  41. ############################# libucd ##########################################
  42. libucd_includedir = $(includedir)/ucd
  43. libucd_include_HEADERS = \
  44. src/include/ucd/ucd.h
  45. lib_LTLIBRARIES += src/libucd.la
  46. src_libucd_la_LDFLAGS = -version-info $(LIBUCD_VERSION)
  47. src_libucd_la_CXXFLAGS = ${AM_CXXFLAGS}
  48. src_libucd_la_SOURCES = \
  49. src/case.cpp \
  50. src/categories.cpp \
  51. src/ctype.cpp
  52. ############################# tests ###########################################
  53. noinst_bin_PROGRAMS += tests/printucddata
  54. tests_printucddata_SOURCES = tests/printucddata.cpp
  55. tests_printucddata_LDADD = src/libucd.la
  56. tests/unicode-data.expected: tools/printdata.py tools/ucd.py
  57. tools/printdata.py ${UCD_ROOTDIR} > $@
  58. tests/unicode-data.actual: tests/printucddata
  59. tests/printucddata > $@
  60. tests/unicode-data.diff: tests/unicode-data.expected tests/unicode-data.actual
  61. diff -U0 tests/unicode-data.expected tests/unicode-data.actual > tests/unicode-data.diff
  62. check: tests/unicode-data.diff