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 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/categories.cpp: tools/categories.py tools/ucd.py
  38. tools/categories.py ${UCD_ROOTDIR} > $@
  39. ############################# libucd ##########################################
  40. libucd_includedir = $(includedir)/ucd
  41. libucd_include_HEADERS = \
  42. src/include/ucd/ucd.h
  43. lib_LTLIBRARIES += src/libucd.la
  44. src_libucd_la_LDFLAGS = -version-info $(LIBUCD_VERSION)
  45. src_libucd_la_CXXFLAGS = ${AM_CXXFLAGS}
  46. src_libucd_la_SOURCES = \
  47. src/categories.cpp \
  48. src/ctype.cpp