2006-08-01 02:57:26 -07:00
|
|
|
SUBDIRS = plugins pygtk .
|
|
|
|
|
2006-08-04 04:57:15 -07:00
|
|
|
libmoomod_la_sources = \
|
2006-08-04 02:17:32 -07:00
|
|
|
moo-mod.c \
|
|
|
|
moopython-api.h \
|
|
|
|
moopython-loader.h \
|
|
|
|
moopython-loader.c \
|
|
|
|
moopython-utils.h \
|
|
|
|
moopython-utils.c
|
|
|
|
|
2006-08-04 04:57:15 -07:00
|
|
|
libpymoo_la_sources = \
|
2006-08-04 02:17:32 -07:00
|
|
|
moopython-mod.c \
|
|
|
|
moopython-api.h \
|
|
|
|
moopython-loader.h \
|
|
|
|
moopython-loader.c \
|
|
|
|
moopython-utils.h \
|
|
|
|
moopython-utils.c
|
|
|
|
|
2006-08-04 04:57:15 -07:00
|
|
|
libmoopython_la_sources = \
|
|
|
|
moopython-builtin.h \
|
|
|
|
moopython-builtin.c \
|
2006-08-04 02:17:32 -07:00
|
|
|
moopython-api.h \
|
|
|
|
moopython-loader.h \
|
|
|
|
moopython-loader.c \
|
|
|
|
moopython-utils.h \
|
|
|
|
moopython-utils.c
|
2006-08-04 04:57:15 -07:00
|
|
|
libmoopython_la_libadd = \
|
2006-08-04 02:17:32 -07:00
|
|
|
pygtk/libmoopygtk.la
|
2006-08-01 04:36:16 -07:00
|
|
|
|
2006-08-04 04:57:15 -07:00
|
|
|
noinst_LTLIBRARIES =
|
|
|
|
|
|
|
|
if MOO_OS_UNIX
|
|
|
|
|
|
|
|
if MOO_INSTALL_LIB
|
|
|
|
noinst_LTLIBRARIES += libmoomod.la
|
|
|
|
if MOO_BUILD_PYTHON_MODULE
|
|
|
|
noinst_LTLIBRARIES += libpymoo.la
|
|
|
|
else
|
|
|
|
noinst_LTLIBRARIES += libmoopython.la
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
noinst_LTLIBRARIES += libmoopython.la
|
|
|
|
endif
|
|
|
|
|
|
|
|
else !MOO_OS_UNIX
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES += libmoomod23.la libmoomod24.la
|
|
|
|
noinst_LTLIBRARIES += libpymoo23.la libpymoo24.la
|
|
|
|
|
|
|
|
endif !MOO_OS_UNIX
|
|
|
|
|
2006-08-04 02:17:32 -07:00
|
|
|
AM_CFLAGS = \
|
2006-08-01 02:57:26 -07:00
|
|
|
-I.. \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
$(MOO_CFLAGS) \
|
|
|
|
$(MOO_DEBUG_CFLAGS) \
|
2006-08-04 02:17:32 -07:00
|
|
|
$(PYTHON_CFLAGS) \
|
2006-08-04 04:57:15 -07:00
|
|
|
$(PYGTK_CFLAGS)
|
|
|
|
|
|
|
|
py23_cflags = \
|
|
|
|
-I.. \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
$(MOO_CFLAGS) \
|
|
|
|
$(MOO_DEBUG_CFLAGS) \
|
|
|
|
$(PYTHON23_CFLAGS) \
|
|
|
|
$(PYGTK23_CFLAGS) \
|
|
|
|
-DMOO_PYTHON_MODULE_DLL_NAME=\"pymoo.dll\"
|
|
|
|
|
|
|
|
py24_cflags = \
|
|
|
|
-I.. \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
$(MOO_CFLAGS) \
|
|
|
|
$(MOO_DEBUG_CFLAGS) \
|
|
|
|
$(PYTHON24_CFLAGS) \
|
|
|
|
$(PYGTK23_CFLAGS) \
|
|
|
|
-DMOO_PYTHON_MODULE_DLL_NAME=\"pymoo.dll\"
|
|
|
|
|
|
|
|
libmoomod_la_SOURCES = $(libmoomod_la_sources)
|
|
|
|
libmoomod_la_LIBADD = pygtk/libmoopygtk.la
|
|
|
|
libmoomod23_la_SOURCES = $(libmoomod_la_sources)
|
|
|
|
libmoomod23_la_LIBADD = pygtk/libmoopygtk23.la
|
|
|
|
libmoomod23_la_CFLAGS = $(py23_cflags)
|
|
|
|
libmoomod24_la_SOURCES = $(libmoomod_la_sources)
|
|
|
|
libmoomod24_la_LIBADD = pygtk/libmoopygtk24.la
|
|
|
|
libmoomod24_la_CFLAGS = $(py24_cflags)
|
|
|
|
|
|
|
|
libpymoo_la_SOURCES = $(libpymoo_la_sources)
|
|
|
|
libpymoo23_la_SOURCES = $(libpymoo_la_sources)
|
|
|
|
libpymoo23_la_CFLAGS = $(py23_cflags)
|
|
|
|
libpymoo24_la_SOURCES = $(libpymoo_la_sources)
|
|
|
|
libpymoo24_la_CFLAGS = $(py24_cflags)
|
|
|
|
|
|
|
|
libmoopython_la_SOURCES = $(libmoopython_la_sources)
|
|
|
|
libmoopython_la_LIBADD = $(libmoopython_la_libadd)
|
2006-08-01 02:57:26 -07:00
|
|
|
|
2006-08-04 02:17:32 -07:00
|
|
|
EXTRA_DIST = \
|
|
|
|
moo-mod.c \
|
|
|
|
moopython-mod.c \
|
2006-08-04 04:57:15 -07:00
|
|
|
moopython-builtin.h \
|
|
|
|
moopython-builtin.c \
|
2006-08-04 02:17:32 -07:00
|
|
|
moopython-api.h \
|
|
|
|
moopython-loader.h \
|
|
|
|
moopython-loader.c \
|
|
|
|
moopython-utils.h \
|
|
|
|
moopython-utils.c \
|
|
|
|
pymoo.ini \
|
|
|
|
codegen/__init__.py \
|
|
|
|
codegen/argtypes.py \
|
|
|
|
codegen/codegen.py \
|
|
|
|
codegen/definitions.py \
|
|
|
|
codegen/defsparser.py \
|
|
|
|
codegen/docgen.py \
|
|
|
|
codegen/mergedefs.py \
|
|
|
|
codegen/mkskel.py \
|
|
|
|
codegen/override.py \
|
|
|
|
codegen/reversewrapper.py \
|
2006-08-01 02:57:26 -07:00
|
|
|
codegen/scmexpr.py
|