185 lines
4.3 KiB
Makefile
185 lines
4.3 KiB
Makefile
EXTRA_PROGRAMS += testhtml medit mterm markup termbuffer testfileview testpaned testpanedfileview miniglade langparser testobject testfold ms
|
|
bin_PROGRAMS =
|
|
|
|
|
|
EXTRA_DIST += \
|
|
tests/pyapp.py.in \
|
|
tests/medit-ui.xml \
|
|
tests/medit-app.opag\
|
|
tests/medit.win
|
|
|
|
BUILT_SOURCES += medit-ui.h tests/medit-app.c
|
|
medit-ui.h: tests/medit-ui.xml
|
|
sh $(srcdir)/moo/mooutils/xml2h.sh MEDIT_UI $(srcdir)/tests/medit-ui.xml > medit-ui.h
|
|
tests/medit-app.c: tests/medit-app.opag medit-ui.h
|
|
opag -f _medit_parse_options -O _medit_opt_ -A _medit_arg_ $(srcdir)/tests/medit-app.opag $(srcdir)/tests/medit-app.c
|
|
|
|
if MOO_OS_MINGW
|
|
medit.win: tests/medit.win
|
|
cp $(srcdir)/tests/medit.win medit
|
|
chmod +x medit
|
|
endif
|
|
|
|
all-am: tests/pyapp.py
|
|
|
|
if MOO_BUILD_APP
|
|
medit = medit
|
|
endif
|
|
if MOO_BUILD_EDIT
|
|
medit = medit
|
|
#noinst_PROGRAMS += testfold
|
|
endif
|
|
if MOO_BUILD_TERM
|
|
if !MOO_OS_CYGWIN
|
|
if !MOO_BUILD_APP
|
|
noinst_PROGRAMS += mterm #termbuffer
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
if MOO_BUILD_UTILS
|
|
if !MOO_BUILD_EDIT
|
|
if !MOO_BUILD_TERM
|
|
if !MOO_OS_CYGWIN
|
|
noinst_PROGRAMS += testfileview
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
bin_PROGRAMS += $(medit)
|
|
|
|
|
|
ldflags = -export-dynamic
|
|
ldadd = \
|
|
$(MOO_LIBS) \
|
|
$(PYTHON_LDFLAGS) \
|
|
$(PYTHON_EXTRA_LIBS)
|
|
|
|
if MOO_BUILD_LIB
|
|
ldadd += libmoo-1.0.la
|
|
endif
|
|
|
|
if MOO_OS_MINGW
|
|
ldflags += -mwindows
|
|
endif MOO_OS_MINGW
|
|
|
|
|
|
##############################################################################
|
|
## medit
|
|
##
|
|
medit_LDFLAGS = $(ldflags)
|
|
medit_LDADD = $(ldadd)
|
|
medit_SOURCES = medit-ui.h
|
|
|
|
if !MOO_BUILD_LIB
|
|
medit_SOURCES += $(libmoo_sources)
|
|
nodist_medit_SOURCES = $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
if MOO_BUILD_APP
|
|
medit_SOURCES += tests/medit-app.c
|
|
else
|
|
medit_SOURCES += tests/medit.c
|
|
endif
|
|
|
|
|
|
testfold_LDFLAGS = $(ldflags)
|
|
testfold_LDADD = $(ldadd)
|
|
testfold_SOURCES = tests/testfold.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_testfold_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
|
|
langparser_LDFLAGS = $(ldflags)
|
|
langparser_LDADD = $(ldadd)
|
|
langparser_SOURCES = tests/testparser.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_langparser_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
ms_LDFLAGS = $(ldflags)
|
|
ms_LDADD = $(ldadd) -lreadline
|
|
ms_SOURCES = tests/mscript.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_ms_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
testhtml_LDFLAGS = $(ldflags)
|
|
testhtml_LDADD = $(ldadd)
|
|
testhtml_SOURCES = tests/testhtml.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_testhtml_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
|
|
mterm_LDFLAGS = $(ldflags)
|
|
mterm_LDADD = $(ldadd)
|
|
mterm_SOURCES = tests/mterm.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_mterm_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
termbuffer_LDFLAGS = $(ldflags)
|
|
termbuffer_LDADD = $(ldadd)
|
|
termbuffer_SOURCES = tests/termbuffer.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_termbuffer_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
|
|
##############################################################################
|
|
## markup
|
|
##
|
|
markup_LDFLAGS = $(ldflags)
|
|
markup_LDADD = $(ldadd)
|
|
|
|
markup_SOURCES = tests/markup.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_markup_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
|
|
##############################################################################
|
|
## miniglade
|
|
##
|
|
miniglade_LDFLAGS = $(ldflags)
|
|
miniglade_LDADD = $(ldadd)
|
|
|
|
miniglade_SOURCES = tests/miniglade.c
|
|
if !MOO_BUILD_LIB
|
|
nodist_miniglade_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
|
|
##############################################################################
|
|
|
|
testpaned_LDFLAGS = $(ldflags)
|
|
testpaned_LDADD = $(ldadd)
|
|
testpaned_SOURCES = tests/testpaned.c
|
|
|
|
testfileview_LDFLAGS = $(ldflags)
|
|
testfileview_LDADD = $(ldadd)
|
|
testfileview_SOURCES = tests/testfileview.c
|
|
|
|
testpanedfileview_LDFLAGS = $(ldflags)
|
|
testpanedfileview_LDADD = $(ldadd)
|
|
testpanedfileview_SOURCES = tests/testpanedfileview.c
|
|
|
|
testobject_LDFLAGS = $(ldflags)
|
|
testobject_LDADD = $(ldadd)
|
|
testobject_SOURCES = tests/testobject.c
|
|
|
|
if !MOO_BUILD_LIB
|
|
nodist_testpaned_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
nodist_testfileview_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
nodist_testpanedfileview_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
nodist_testobject_SOURCES = $(libmoo_sources) $(nodist_libmoo_sources)
|
|
endif
|
|
|
|
#####################################################################
|
|
# Quick hack to get the module
|
|
moo.so: medit
|
|
gcc *.o $(medit_LDFLAGS) $(medit_LDADD) -shared -o moo.so
|