mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 20:15:34 +00:00
c09e82a09f
* Makefile.am: reenable samples. * sample/Actions.cs: s/Item/MenuItem, Item is dead. * sample/NativeInstantiationTest.cs: fix dllimport, still crashes. * sample/PolarFixed.cs: Fix size negotiation API usage, still crashes. * sample/TreeModelDemo.cs: add ItemPrevious, still crashes. * sample/Makefile.am: comment out some samples that don't build.
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
SUBDIRS = sources generator parser glib gio cairo pango atk gdk gtk gtkdotnet sample doc
|
|
|
|
EXTRA_DIST = \
|
|
gtk-sharp.snk \
|
|
policy.config.in \
|
|
AssemblyInfo.cs.in \
|
|
ChangeLog \
|
|
HACKING \
|
|
README \
|
|
README.generator
|
|
|
|
configure.in: bootstrap.status configure.in.in
|
|
$(SHELL) $<
|
|
|
|
win32-installer: all
|
|
candle.exe gtk-sharp-2.0-lib.wxs
|
|
light.exe gtk-sharp-2.0-lib.wixobj
|
|
candle.exe gtk-sharp-2.0-dev.wxs
|
|
light.exe gtk-sharp-2.0-dev.wixobj
|
|
|
|
assembly_dirs = glib gio pango atk gdk gtk glade gtkdotnet
|
|
|
|
cross-bundle: all
|
|
mkdir -p gtk-sharp-cross-$(VERSION)
|
|
rm -rf gtk-sharp-cross-$(VERSION)/*
|
|
cp *.wxs gtk-sharp-cross-$(VERSION)
|
|
cp generator/gapi_codegen.exe gtk-sharp-cross-$(VERSION)
|
|
cp */glue/.libs/*.dll gtk-sharp-cross-$(VERSION)
|
|
@for a in $(assembly_dirs); do \
|
|
mkdir -p gtk-sharp-cross-$(VERSION)/$$a; \
|
|
cp $$a/*.dll gtk-sharp-cross-$(VERSION)/$$a; \
|
|
done
|
|
cp sample/GtkDemo/GtkDemo.exe gtk-sharp-cross-$(VERSION)
|
|
zip -9r gtk-sharp-cross-$(VERSION).zip gtk-sharp-cross-$(VERSION)
|
|
rm -rf gtk-sharp-cross-$(VERSION)
|
|
|