mirror of
https://github.com/bspeice/libcvautomation
synced 2025-01-09 15:30:05 -05:00
13 lines
559 B
Makefile
13 lines
559 B
Makefile
pyexec_LTLIBRARIES = _libcvautomation.la
|
|
_libcvautomation_la_SOURCES = libcvautomation-swig.c
|
|
_libcvautomation_la_LDFLAGS = -avoid-version -module $(PYTHON_LDFLAGS) -L$(top_srcdir)/libcvautomation/.libs
|
|
_libcvautomation_la_LIBADD = -lcvautomation
|
|
_libcvautomation_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/include
|
|
|
|
python_PYTHON = libcvautomation.py libcvautomation_funcs.py
|
|
|
|
EXTRA_DIST = libcvautomation.swig
|
|
|
|
libcvautomation-swig.c: libcvautomation.swig
|
|
$(Swig) -I$(top_srcdir)/include -python -o libcvautomation-swig.c -outdir . libcvautomation.swig
|