2005-06-22 11:20:32 -07:00
|
|
|
#
|
|
|
|
# moo/Makefile.am
|
|
|
|
#
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
LTVERSION = 0:1:0
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
DIST_SUBDIRS = \
|
|
|
|
mooapp \
|
|
|
|
mooutils \
|
|
|
|
mooedit \
|
2005-07-30 09:21:40 -07:00
|
|
|
moopython \
|
2005-10-13 07:08:18 -07:00
|
|
|
mooterm
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
mooincludedir = $(includedir)/moo-1.0
|
|
|
|
mooinclude_HEADERS = moo.h
|
|
|
|
moolibincludedir = $(libdir)/moo-1.0/include
|
|
|
|
moolibinclude_HEADERS = moo-config.h
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
EXTRA_DIST = $(mooinclude_HEADERS) $(moolibinclude_HEADERS)
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
# lib_LTLIBRARIES = libmoo-1.0.la
|
|
|
|
noinst_LTLIBRARIES = libmoo-1.0.la
|
|
|
|
|
|
|
|
libmoo_1_0_la_SOURCES = \
|
|
|
|
dummy.c
|
|
|
|
|
|
|
|
all-am: moo-config.h
|
|
|
|
|
|
|
|
moo_libadd =
|
|
|
|
subdirs =
|
|
|
|
|
|
|
|
if MOO_BUILD_UTILS
|
|
|
|
subdirs += mooutils
|
|
|
|
moo_libadd += mooutils/libmooutils.la
|
2005-06-22 11:20:32 -07:00
|
|
|
endif
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if MOO_BUILD_EDIT
|
2005-06-22 11:20:32 -07:00
|
|
|
subdirs += mooedit
|
2005-10-13 07:08:18 -07:00
|
|
|
moo_libadd += mooedit/libmooedit.la
|
2005-06-22 11:20:32 -07:00
|
|
|
endif
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if MOO_BUILD_TERM
|
2005-06-22 11:20:32 -07:00
|
|
|
subdirs += mooterm
|
2005-10-13 07:08:18 -07:00
|
|
|
if !MOO_OS_CYGWIN
|
|
|
|
moo_libadd += mooterm/libmooterm.la
|
|
|
|
endif !MOO_OS_CYGWIN
|
2005-06-22 11:20:32 -07:00
|
|
|
endif
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if MOO_BUILD_APP
|
2005-06-22 11:20:32 -07:00
|
|
|
subdirs += mooapp
|
2005-10-13 07:08:18 -07:00
|
|
|
if !MOO_OS_CYGWIN
|
|
|
|
moo_libadd += mooapp/libmooapp.la
|
|
|
|
endif !MOO_OS_CYGWIN
|
2005-06-22 11:20:32 -07:00
|
|
|
endif
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if MOO_USE_PYGTK
|
2005-07-30 09:21:40 -07:00
|
|
|
subdirs += moopython
|
2005-10-13 07:08:18 -07:00
|
|
|
moo_libadd += moopython/libmoopython.la
|
2005-07-30 09:21:40 -07:00
|
|
|
endif
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
libmoo_1_0_la_LIBADD = $(moo_libadd)
|
|
|
|
libmoo_1_0_la_LDFLAGS = -version-info $(LTVERSION) -export-symbols-regex "^[^_].*" -no-undefined
|
2005-07-30 09:21:40 -07:00
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
SUBDIRS = $(subdirs) .
|
|
|
|
|
|
|
|
DEFAULT_INCLUDES =
|
|
|
|
AM_CFLAGS = \
|
|
|
|
-I$(top_builddir) \
|
|
|
|
$(MOO_CFLAGS) \
|
|
|
|
$(PYTHON_INCLUDES) \
|
|
|
|
$(PYGTK_CFLAGS) \
|
2005-07-25 03:56:08 -07:00
|
|
|
$(DEBUG_CFLAGS) \
|
2005-07-30 09:21:40 -07:00
|
|
|
$(CFLAGS)
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# moo module
|
|
|
|
#
|
|
|
|
if BUILD_PYMOO
|
|
|
|
|
|
|
|
pyexec_LTLIBRARIES = moo.la
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
moo_la_SOURCES = $(libmoo_1_0_SOURCES)
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if MOO_OS_MINGW
|
2005-06-22 11:20:32 -07:00
|
|
|
mingw_flags = -no-undefined
|
2005-10-13 07:08:18 -07:00
|
|
|
endif MOO_OS_MINGW
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
moo_la_LDFLAGS = -module -avoid-version -export-symbols-regex initmoo $(mingw_flags)
|
|
|
|
|
|
|
|
moo_la_LIBADD = \
|
|
|
|
$(libmoo_la_LIBADD) \
|
|
|
|
$(GTK_LIBS) \
|
|
|
|
$(XML_LIBS) \
|
|
|
|
$(PYTHON_LDFLAGS) \
|
|
|
|
$(PYTHON_EXTRA_LIBS)
|
|
|
|
|
|
|
|
endif BUILD_PYMOO
|