File: Makefile.am

package info (click to toggle)
freej 0.10git20100110-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 32,080 kB
  • ctags: 22,705
  • sloc: cpp: 156,254; ansic: 25,531; sh: 13,538; perl: 4,624; makefile: 3,278; python: 2,889; objc: 1,284; asm: 1,125; ruby: 126
file content (22 lines) | stat: -rw-r--r-- 666 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
swig_source = freej_py.cpp
swig_header = freej_py.h

python_module = freej.py

BUILT_SOURCES = $(swig_source) $(swig_header)

$(swig_source): $(SWIG_IFACE)
		$(SWIG_COMMAND) $(SWIG_PYTHON_OPT) -threads -shadow -o $(swig_source) $(SWIG_IFACE)

pkgpython_PYTHON = __init__.py
nodist_pkgpython_PYTHON = $(python_module)
pkgpyexec_LTLIBRARIES = _freej.la
#pkgpython_instdir = $(pythondir)
#pkgpython_inst_PYTHON = freej.pth

nodist__freej_la_SOURCES = $(swig_source)
_freej_la_CXXFLAGS = $(FREEJ_CFLAGS) $(SWIG_PYTHON_CPPFLAGS)
_freej_la_LDFLAGS = -module -avoid-version
_freej_la_LIBADD = $(top_builddir)/src/libfreej.la

CLEANFILES = $(BUILT_SOURCES) $(python_module)