comparison Makefile.am @ 172:29d9da90afcf

pycall: New function to pass Octave values to a Python function * pycall.cc: Rename from py.cc. Add support for dispatching variable length Octave arguments to a Python function. * Makefile.am (OCT_FILES): Rename py.oct to pycall.oct.
author Mike Miller <mtmiller@octave.org>
date Thu, 07 Apr 2016 14:51:18 -0700
parents f687155dcb7c
children 4adc5d020dda 57807b5fa7bf
comparison
equal deleted inserted replaced
171:b8560f97e9bf 172:29d9da90afcf
32 DOC_FILES = \ 32 DOC_FILES = \
33 INSTALL.md \ 33 INSTALL.md \
34 README.md 34 README.md
35 35
36 OCT_FILES = \ 36 OCT_FILES = \
37 py.oct \ 37 pycall.oct \
38 pyeval.oct \ 38 pyeval.oct \
39 pyexec.oct 39 pyexec.oct
40 40
41 OCT_SOURCES = $(patsubst %.oct, %.cc, $(OCT_FILES)) 41 OCT_SOURCES = $(patsubst %.oct, %.cc, $(OCT_FILES))
42 42