mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 07:15:34 +00:00
2e07bf7e87
* api/*.xml : get libgda and libgnomedb metadata setup * gconf/*/Makefile.in : patch from MauricioC for -L's and /r's * gnomedb/Makefile.in : patch from MauricioC for -L's and /r's * generator/ClassBase.cs (ctor): mangle hash names for sigs and props * generator/Parameters.cs (MangleName): handle params, null, and ref * generator/Parser.cs (ParseNamespace): ignore "hidden" types * generator/StructBase.cs (MangleName): handle params, null, and ref * glib/Object.cs (Equals): kill, also kill == and != * sources/Gda.metadata : new, make Gda behave without hand edits * sources/GnomeDb.metadata : ditto svn path=/trunk/gtk-sharp/; revision=8577
29 lines
885 B
Makefile
29 lines
885 B
Makefile
MCS = mcs
|
|
DESTDIR =
|
|
|
|
SOURCES = \
|
|
PropertyEditor.cs \
|
|
PropertyEditorBool.cs \
|
|
PropertyEditorColorPicker.cs \
|
|
PropertyEditorEnum.cs \
|
|
PropertyEditorEntry.cs \
|
|
PropertyEditorFileEntry.cs \
|
|
PropertyEditorOptionMenu.cs \
|
|
PropertyEditorRadioButton.cs \
|
|
PropertyEditorSpinButton.cs \
|
|
PropertyEditorToggleButton.cs \
|
|
EditorShell.cs \
|
|
#
|
|
|
|
all: gconf-sharp-peditors.dll
|
|
|
|
gconf-sharp-peditors.dll: $(SOURCES)
|
|
$(MCS) $(SOURCES) -L ../../glib -L ../../pango -L ../../atk -L ../../gdk -L ../../gtk -L ../../art -L ../../gnome -L ../GConf -L ../../glade /r:glib-sharp.dll /r:pango-sharp.dll /r:atk-sharp.dll /r:gdk-sharp.dll /r:gtk-sharp.dll /r:art-sharp.dll /r:gnome-sharp.dll /r:glade-sharp.dll /r:gconf-sharp.dll /r:System.Drawing /target:library /out:gconf-sharp-peditors.dll
|
|
|
|
install: all
|
|
cp gconf-sharp-peditors.dll $(DESTDIR)@prefix@/lib
|
|
|
|
clean:
|
|
rm -f gconf-sharp-peditors.dll
|
|
|