[Monodevelop-patches-list] r1058 - in branches/MonoDevelop-0.1: build gdldock/gdl gdldock/sources/gdl gtkmozembed-sharp src/AddIns/BackendBindings/CSharpBinding src/AddIns/DisplayBindings/SourceEditor src/AddIns/Misc/StartPage src/Libraries/MonoDevelop.Core src/Libraries/MonoDevelop.Gui.Utils src/Libraries/MonoDevelop.Gui.Widgets src/Libraries/SharpAssembly src/Libraries/SharpRefactory src/Main/Base src/Main/StartUp

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sat Feb 28 16:08:23 EST 2004


Author: tberman
Date: 2004-02-28 16:08:23 -0500 (Sat, 28 Feb 2004)
New Revision: 1058

Modified:
   branches/MonoDevelop-0.1/build/Makefile.am
   branches/MonoDevelop-0.1/gdldock/gdl/Makefile.am
   branches/MonoDevelop-0.1/gdldock/sources/gdl/Makefile.am
   branches/MonoDevelop-0.1/gtkmozembed-sharp/Makefile.am
   branches/MonoDevelop-0.1/src/AddIns/BackendBindings/CSharpBinding/Makefile.am
   branches/MonoDevelop-0.1/src/AddIns/DisplayBindings/SourceEditor/Makefile.am
   branches/MonoDevelop-0.1/src/AddIns/Misc/StartPage/Makefile.am
   branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Core/Makefile.am
   branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am
   branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am
   branches/MonoDevelop-0.1/src/Libraries/SharpAssembly/Makefile.am
   branches/MonoDevelop-0.1/src/Libraries/SharpRefactory/Makefile.am
   branches/MonoDevelop-0.1/src/Main/Base/Makefile.am
   branches/MonoDevelop-0.1/src/Main/StartUp/Makefile.am
Log:
backporting potential build fix


Modified: branches/MonoDevelop-0.1/build/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/build/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/build/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,3 +1,6 @@
 SUBDIRS = data AddIns doc
 
 all:
+
+clean:
+	rm -rf bin

Modified: branches/MonoDevelop-0.1/gdldock/gdl/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/gdldock/gdl/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/gdldock/gdl/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,6 +1,6 @@
 MCS = mcs
 RUNTIME = mono
-ASSEMBLY = ../../build/bin/gdl-sharp.dll
+ASSEMBLY = gdl-sharp.dll
 
 INCLUDE_APIS = \
 	@gtksharp_prefix@/share/gapi/gdk-api.xml \
@@ -16,7 +16,8 @@
 $(ASSEMBLY): generated-stamp ../../build/bin
 	$(MCS) --unsafe --target library \
 	-r glib-sharp.dll -r gtk-sharp.dll -r gdk-sharp.dll \
-	--recurse '*.cs' -o $(ASSEMBLY)
+	--recurse '*.cs' -o $(ASSEMBLY) \
+	&& cp $(ASSEMBLY) ../../build/bin/.
 
 ../../build/bin:
 	mkdir ../../build/bin

Modified: branches/MonoDevelop-0.1/gdldock/sources/gdl/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/gdldock/sources/gdl/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/gdldock/sources/gdl/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -120,7 +120,7 @@
 clean:
 	rm -f libgdldock.so $(libgdldock_OBJECTS) $(GENERATED_SOURCE)
 
-CLEANFILES= ../../../build/bin/libgdldock.so ../../../build/bin/*.png
+CLEANFILES = libgdldock.so
 
 .PHONY: clean
 

Modified: branches/MonoDevelop-0.1/gtkmozembed-sharp/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/gtkmozembed-sharp/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/gtkmozembed-sharp/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,5 +1,5 @@
 MCS=mcs
-ASSEMBLY = ../build/bin/gtkmozembed-sharp.dll
+ASSEMBLY = gtkmozembed-sharp.dll
 
 INCLUDE_APIS = \
 	@gtksharp_prefix@/share/gapi/gdk-api.xml \
@@ -15,7 +15,8 @@
 $(ASSEMBLY): generated-stamp
 	$(MCS) --unsafe --target library \
 	-r glib-sharp.dll -r gtk-sharp.dll -r gdk-sharp.dll \
-	--recurse '*.cs' -o $(ASSEMBLY)
+	--recurse '*.cs' -o $(ASSEMBLY) \
+	&& cp $(ASSEMBLY) ../build/bin/.
 
 assemblydir = $(prefix)/lib/monodevelop/bin
 assembly_DATA = $(ASSEMBLY)

Modified: branches/MonoDevelop-0.1/src/AddIns/BackendBindings/CSharpBinding/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/AddIns/BackendBindings/CSharpBinding/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/AddIns/BackendBindings/CSharpBinding/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -25,7 +25,7 @@
 ./FormattingStrategy/CSharpFormattingStrategy.cs \
 ./CSharpBindingCompilerManager.cs
 
-DLL=../../../../build/AddIns/AddIns/BackendBindings/CSharpBinding.dll
+DLL = CSharpBinding.dll
 
 all: $(DLL)
 
@@ -36,12 +36,13 @@
 		/r:../../../../build/bin/MonoDevelop.Base.dll \
 		/r:../../../../build/bin/ICSharpCode.SharpRefactory.dll \
 		/r:gtk-sharp.dll \
-		$(FILES)
+		$(FILES) \
+	&& cp $(DLL) ../../../../build/AddIns/AddIns/BackendBindings/.
 
 csharpbindinglibdir = $(libdir)/monodevelop/AddIns/AddIns/BackendBindings
 csharpbindinglib_DATA = $(DLL)
 
-CLEANFILES=$(DLL)
+CLEANFILES = $(DLL)
 
 EXTRA_DIST = $(FILES)
 

Modified: branches/MonoDevelop-0.1/src/AddIns/DisplayBindings/SourceEditor/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/AddIns/DisplayBindings/SourceEditor/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/AddIns/DisplayBindings/SourceEditor/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,4 +1,4 @@
-DLL=../../../../build/bin/MonoDevelop.SourceEditor.dll
+DLL = MonoDevelop.SourceEditor.dll
 
 FILES = ./CodeCompletion/CodeCompletionData.cs \
 ./CodeCompletion/ICompletionData.cs \
@@ -81,11 +81,12 @@
 		/r:../../../../build/bin/MonoDevelop.Gui.Widgets.dll \
 		/r:pango-sharp.dll /r:gnome-sharp.dll /r:glade-sharp.dll \
 		/r:gconf-sharp.dll \
-		/r:System.Drawing.dll
+		/r:System.Drawing.dll \
+	&& cp $(DLL) ../../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)
 
-CLEANFILES=$(DLL)
+CLEANFILES = $(DLL)
 
 EXTRA_DIST = $(FILES)

Modified: branches/MonoDevelop-0.1/src/AddIns/Misc/StartPage/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/AddIns/Misc/StartPage/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/AddIns/Misc/StartPage/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -4,7 +4,7 @@
 Main.cs \
 StartPage.cs
 
-DLL=../../../../build/AddIns/AddIns/Misc/StartPage/MonoDevelop.StartPage.dll
+DLL = MonoDevelop.StartPage.dll
 
 all: $(DLL)
 
@@ -14,7 +14,8 @@
 		/r:../../../../build/bin/MonoDevelop.Base.dll \
 		/r:../../../../build/bin/gtkmozembed-sharp.dll \
 		/r:gtk-sharp.dll \
-		$(FILES)
+		$(FILES) \
+	&& cp $(DLL) ../../../../build/AddIns/AddIns/Misc/StartPage/.
 
 startpagelibdir = $(libdir)/monodevelop/AddIns/AddIns/Misc/StartPage
 startpagelib_DATA = $(DLL)

Modified: branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Core/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Core/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Core/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -58,18 +58,18 @@
 ./AddIns/AddInCollection.cs \
 ./AddIns/AddInSignatureException.cs
 
-DLL=../../../build/bin/MonoDevelop.Core.dll
+DLL = MonoDevelop.Core.dll
 
 all: $(DLL)
 
 $(DLL): $(FILES)
 	@ mcs /debug /out:$(DLL) /target:library /r:System.Drawing.dll /define:LINUX /resource:../../../data/resources/AddIn.xsd,AddIn.xsd \
-	$(FILES)
+	$(FILES) && cp $(DLL) ../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)
 
-CLEANFILES=$(DLL)
+CLEANFILES = $(DLL)
 
 EXTRA_DIST = $(FILES)
 

Modified: branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Utils/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,4 +1,4 @@
-DLL=../../../build/bin/MonoDevelop.Gui.Utils.dll
+DLL = MonoDevelop.Gui.Utils.dll
 REFERENCES=/r:System.Drawing.dll /r:gtk-sharp.dll /r:gdk-sharp.dll /r:pango-sharp.dll /r:gnome-sharp.dll /r:glib-sharp.dll /r:glade-sharp.dll
 
 FILES = ./FileIcons/FileIconLoader.cs \
@@ -9,7 +9,8 @@
 all: $(DLL)
 
 $(DLL): $(FILES)
-	@ mcs /debug /out:$(DLL) /target:library $(REFERENCES) $(FILES)
+	@ mcs /debug /out:$(DLL) /target:library $(REFERENCES) $(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)

Modified: branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Libraries/MonoDevelop.Gui.Widgets/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -1,7 +1,7 @@
 
 MCS = mcs -debug
 
-DLL = ../../../build/bin/MonoDevelop.Gui.Widgets.dll
+DLL = MonoDevelop.Gui.Widgets.dll
 
 REFERENCES = /r:System.Drawing.dll /r:gtk-sharp.dll /r:gdk-sharp.dll /r:pango-sharp.dll /r:gnome-sharp.dll /r:glib-sharp.dll /r:glade-sharp.dll /r:../../../build/bin/MonoDevelop.Core.dll
 
@@ -28,7 +28,8 @@
 all: $(DLL)
 
 $(DLL): $(FILES)
-	@ $(MCS) /debug /out:$(DLL) /target:library $(REFERENCES) $(FILES)
+	@ $(MCS) /debug /out:$(DLL) /target:library $(REFERENCES) $(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)

Modified: branches/MonoDevelop-0.1/src/Libraries/SharpAssembly/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Libraries/SharpAssembly/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Libraries/SharpAssembly/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -66,17 +66,18 @@
 ./src/SharpAssembly/AssemblyInfo.cs \
 ./src/SharpAssembly/AssemblyNameNotFoundException.cs 
 
-DLL=../../../build/bin/ICSharpCode.SharpAssembly.dll
+DLL = ICSharpCode.SharpAssembly.dll
 
 all: $(DLL)
 
 $(DLL): $(FILES)
-	@ mcs /debug /out:$(DLL) /target:library $(FILES)
+	@ mcs /debug /out:$(DLL) /target:library $(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)
   
-CLEANFILES=$(DLL)
+CLEANFILES = $(DLL)
 
 EXTRA_DIST = $(FILES)
 

Modified: branches/MonoDevelop-0.1/src/Libraries/SharpRefactory/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Libraries/SharpRefactory/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Libraries/SharpRefactory/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -106,12 +106,13 @@
 ./src/VBConverter/VBNetVisitor.cs \
 ./src/AssemblyInfo.cs
 
-DLL=../../../build/bin/ICSharpCode.SharpRefactory.dll
+DLL = ICSharpCode.SharpRefactory.dll
 
 all: $(DLL)
 
 $(DLL): $(FILES)
-	@ mcs /debug /out:$(DLL) /target:library /r:System.Drawing.dll $(FILES)
+	@ mcs /debug /out:$(DLL) /target:library /r:System.Drawing.dll $(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 test-parser.exe : $(DLL) src/Main.cs
 	@ mcs /debug /out:$@ /r:$(DLL) src/Main.cs
@@ -122,7 +123,7 @@
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)
 
-CLEANFILES=$(DLL)
+CLEANFILES = $(DLL)
 
 EXTRA_DIST = $(FILES)
 

Modified: branches/MonoDevelop-0.1/src/Main/Base/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Main/Base/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Main/Base/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -353,7 +353,7 @@
 ./Internal/ExternalTool/ExternalTool.cs \
 ./AssemblyInfo.cs
 
-DLL=../../../build/bin/MonoDevelop.Base.dll
+DLL = MonoDevelop.Base.dll
 
 all: $(DLL)
 
@@ -371,7 +371,8 @@
 		/r:../../../build/bin/gtkmozembed-sharp.dll \
 		/r:glade-sharp.dll \
 		/r:gnome-sharp.dll \
-		$(FILES)
+		$(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 Services/StockIcons.cs : ./Services/process-icons.pl
 	perl  -x../../../build/data/resources/icons -w ./Services/process-icons.pl > $@

Modified: branches/MonoDevelop-0.1/src/Main/StartUp/Makefile.am
===================================================================
--- branches/MonoDevelop-0.1/src/Main/StartUp/Makefile.am	2004-02-28 20:34:58 UTC (rev 1057)
+++ branches/MonoDevelop-0.1/src/Main/StartUp/Makefile.am	2004-02-28 21:08:23 UTC (rev 1058)
@@ -30,7 +30,7 @@
 /resource:$(BASEDIR)/data/resources/StringResources.br.resources \
 /resource:$(BASEDIR)/data/resources/SplashScreen.png,SplashScreen.png
 
-DLL=../../../build/bin/MonoDevelop.exe
+DLL = MonoDevelop.exe
 
 all: $(DLL)
 
@@ -41,7 +41,8 @@
 		/r:glib-sharp.dll \
 		/define:GTK /r:gtk-sharp.dll /r:gdk-sharp.dll \
 		/r:gnome-sharp.dll \
-		$(RESOURCES) $(FILES)
+		$(RESOURCES) $(FILES) \
+	&& cp $(DLL) ../../../build/bin/.
 
 assemblydir = $(libdir)/monodevelop/bin
 assembly_DATA = $(DLL)           




More information about the Monodevelop-patches-list mailing list