Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
2005-04-20 John Luke <john.luke@gmail.com>
Browse files Browse the repository at this point in the history
        * gtkmozembed/Makefile.am:
        * sample/Makefile.am: use compatible compiler switches
        to avoid warnings with mcs head


svn path=/trunk/gtkmozembed-sharp/; revision=43374
  • Loading branch information
John Luke committed Apr 21, 2005
1 parent 103276e commit 3b77f13
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2005-04-20 John Luke <john.luke@gmail.com>

* gtkmozembed/Makefile.am:
* sample/Makefile.am: use compatible compiler switches
to avoid warnings with mcs head

2005-03-07 Zac Bowling <zac@zacbowling.com>

* configure.in: conditional fix for WIN32
Expand Down
4 changes: 2 additions & 2 deletions gtkmozembed/Makefile.am
Expand Up @@ -42,8 +42,8 @@ gecko-sharp.snk: $(top_srcdir)/gecko-sharp.snk
cp $(top_srcdir)/gecko-sharp.snk .

gecko-sharp.dll: $(build_sources) generated-stamp gecko-sharp.snk
$(MCS) --unsafe --target library $(GTK_SHARP_LIBS) \
$(build_sources) generated/*.cs -o gecko-sharp.dll
$(MCS) -unsafe -target:library $(GTK_SHARP_LIBS) \
$(build_sources) generated/*.cs -out:gecko-sharp.dll

install-data-local:
echo "$(GACUTIL) /i $(ASSEMBLY) /f /package gecko-sharp-2.0 /root $(DESTDIR)$(libdir)"; \
Expand Down
18 changes: 9 additions & 9 deletions sample/Makefile.am
Expand Up @@ -13,16 +13,16 @@ webshot: webshot.in
all: GtkMozApp.exe WebThumbnailer.exe

GtkMozApp.exe: $(srcdir)/GtkMozApp.cs $(srcdir)/MozWindow.cs
$(MCS) --unsafe \
-L @top_builddir@/gtkmozembed \
-r gecko-sharp.dll \
-L $(GTKSHARP_PREFIX)/lib \
$(MCS) -unsafe \
-lib:@top_builddir@/gtkmozembed \
-r:gecko-sharp.dll \
-lib:$(GTKSHARP_PREFIX)/lib \
-pkg:gtk-sharp-2.0 \
-r System.Drawing \
-o GtkMozApp.exe $(srcdir)/GtkMozApp.cs $(srcdir)/MozWindow.cs
-r:System.Drawing \
-out:GtkMozApp.exe $(srcdir)/GtkMozApp.cs $(srcdir)/MozWindow.cs

WebThumbnailer.exe: $(srcdir)/WebThumbnailer.cs
$(MCS) -L @top_builddir@/gtkmozembed \
-r gecko-sharp.dll \
$(MCS) -lib:@top_builddir@/gtkmozembed \
-r:gecko-sharp.dll \
-pkg:gtk-sharp-2.0 $(srcdir)/WebThumbnailer.cs \
-o WebThumbnailer.exe
-out:WebThumbnailer.exe

0 comments on commit 3b77f13

Please sign in to comment.