Blame view
tools/openfst-1.6.7/src/extensions/python/Makefile.am
792 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# NB: we use the Cython-generated .cc files rather than the *.pxd/.pyx sources # used to generate them. Consequently, modifications to the .pyx files will not # influence the build unless the .cc files are regenerated using Cython. python_LTLIBRARIES = pywrapfst.la pyexec_LTILIBRARIES = pywrapfst.la pywrapfst_la_SOURCES = pywrapfst.cc pywrapfst_la_CPPFLAGS = -I$(srcdir)/../../include $(PYTHON_CPPFLAGS) pywrapfst_la_LDFLAGS = $(PYTHON_LDFLAGS) -avoid-version -module pywrapfst_la_LIBADD = ../far/libfstfarscript.la ../far/libfstfar.la \ ../../script/libfstscript.la ../../lib/libfst.la \ -lm $(DL_LIBS) # Exports the *.pxd/*.pxd source files. EXTRA_DIST = basictypes.pxd fst.pxd ios.pxd memory.pxd pywrapfst.pxd \ pywrapfst.pyx |