Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2008-01-17 03:26:30 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2008-01-17 03:26:30 +0300
commit2515d53aa02f5ae38ad19baae70328dc8f8d2dbf (patch)
tree13fe523e5557022137e152e240b1613738e5d5f3 /main/Makefile.include
parentcddd24f9c618e93621805542ee171e8479f1ff48 (diff)
* main/configure.in: Updated. Remove intltool calls, check for msgfmt.
* main/monodevelop.in: Tidied. * main/Makefile.include: Refactor code that sets vars when lanching MD, and apply to mdtool too. * main/mdtool.in: Set process name on mdtool. * main/Makefile.am: Refactor code that sets vars when lanching MD. * main/autogen.sh: Remove intltoolizing. * main/po/POTFILES.in, main/po/POTFILES.skip, main/po/po.mdp: No longer needed. * main/po/po.mdse: Updated. * main/po/Makefile.am: New build for i18n files. svn path=/trunk/monodevelop/; revision=93123
Diffstat (limited to 'main/Makefile.include')
-rw-r--r--main/Makefile.include13
1 files changed, 13 insertions, 0 deletions
diff --git a/main/Makefile.include b/main/Makefile.include
index c2b369a673..839ffb4c3c 100644
--- a/main/Makefile.include
+++ b/main/Makefile.include
@@ -2,3 +2,16 @@ build_sources = $(addprefix $(srcdir)/, $(FILES)) $(GENERATED_FILES)
build_resources = $(addprefix $(srcdir)/, $(RES))
build_test_sources = $(addprefix $(srcdir)/, $(TESTFILES)) $(GENERATED_FILES)
+### SYNCH BLOCK: any changes to this line should be kept in sync with the corresponding block in monodevelop.in and mdtool.in
+MD_PKG_CONFIG_PATH=$(gtksharp_prefix)/lib/pkgconfig/:/usr/lib/pkgconfig/:/usr/local/lib/pkgconfig/:/usr/share/pkgconfig/:/usr/local/share/pkgconfig/$(shell if test -d /usr/lib64; then echo ":/usr/lib64/pkgconfig/:/usr/local/lib64/pkgconfig/"; fi)
+### END BLOCK
+
+MD_BIN_PATH=$(abs_top_builddir)/build/bin
+
+MD_LAUNCH_SETUP= \
+ MONODEVELOP_LOCALE_PATH=$(abs_top_builddir)/build/locale \
+ MONO_ADDINS_REGISTRY=$(MD_BIN_PATH) MOZILLA_FIVE_HOME=$(MOZILLA_HOME) \
+ LD_LIBRARY_PATH=`echo "$(LD_LIBRARY_PATH):$(MOZILLA_HOME)" | sed 's/^://g'` \
+ PKG_CONFIG_PATH=`echo "$(PKG_CONFIG_PATH):$(MD_PKG_CONFIG_PATH)" | sed 's/^://g'`
+
+MDTOOL_RUN=$(MD_LAUNCH_SETUP) exec -a "mdtool" $(RUNTIME) --debug $(MD_BIN_PATH)/mdrun.exe