mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 13:55:30 +00:00
d33dd8a15f
* gconf, sample/gconf: Added. * glue/combo.c: This was never added, add it now. * configure.in, makefile, sample/Makefile.in: Build new gconf bindings if gnome is enabled. svn path=/trunk/gtk-sharp/; revision=8389
27 lines
413 B
Makefile
27 lines
413 B
Makefile
MCS = mcs
|
|
DESTDIR =
|
|
|
|
SOURCES = \
|
|
ClientBase.cs \
|
|
Client.cs \
|
|
ChangeSet.cs \
|
|
_Entry.cs \
|
|
NoSuchKeyException.cs \
|
|
NotifyEventArgs.cs \
|
|
NotifyEventHandler.cs \
|
|
NotifyWrapper.cs \
|
|
Value.cs \
|
|
#
|
|
|
|
all: gconf-sharp.dll
|
|
|
|
gconf-sharp.dll: $(SOURCES)
|
|
$(MCS) $(SOURCES) /r:glib-sharp.dll /target:library /out:gconf-sharp.dll
|
|
|
|
install: all
|
|
cp gconf-sharp.dll $(DESTDIR)@prefix@/lib
|
|
|
|
clean:
|
|
rm -f gconf-sharp.dll
|
|
|