mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-27 19:35:27 +00:00
2190751eba
* configure.in: added new .pc files * gtk-sharp.pc.in: modified to include Libs: line * art/.cvsignore: added art-sharp.pc * art/Makefile.am: added rules for installing .pc * art/art-sharp.pc.in: new .pc file * gconf/GConf/.cvsignore: added gconf-sharp.pc * gconf/GConf/Makefile.am: added rules for installing .pc * gconf/GConf/gconf-sharp.pc.in: new .pc file * gda/.cvsignore: added gda-sharp.pc * gda/Makefile.am: added rules for installing .pc * gda/gda-sharp.pc.in: new .pc file * glade/.cvsignore: added glade-sharp.pc * glade/Makefile.am: added rules for installing .pc * glade/glade-sharp.pc.in: new .pc file * gnome/.cvsignore: added gnome-sharp.pc * gnome/Makefile.am: added rules for installing .pc * gnome/gnome-sharp.pc.in: new .pc file * gnomedb/.cvsignore: added gnomedb-sharp.pc * gnomedb/Makefile.am: added rules for installing .pc * gnomedb/gnomedb-sharp.pc.in: new .pc file * gtkhtml/.cvsignore: added gtkhtml-sharp.pc * gtkhtml/Makefile.am: added rules for installing .pc * gtkhtml/gtkhtml-sharp.pc.in: new .pc file * rsvg/.cvsignore: added rsvg-sharp.pc * rsvg/Makefile.am: added rules for installing .pc * rsvg/rsvg-sharp.pc.in: new .pc file * vte/.cvsignore: added vte-sharp.pc * vte/Makefile.am: added rules for installing .pc * vte/vte-sharp.pc.in: new .pc file svn path=/trunk/gtk-sharp/; revision=24992
37 lines
690 B
Makefile
37 lines
690 B
Makefile
if ENABLE_GNOME
|
|
ASSEMBLY = gconf-sharp.dll
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gconf-sharp.pc
|
|
else
|
|
ASSEMBLY =
|
|
endif
|
|
assemblydir = $(libdir)
|
|
assembly_DATA = $(ASSEMBLY)
|
|
CLEANFILES = $(ASSEMBLY)
|
|
|
|
DISTCLEANFILES = gconf-sharp.pc
|
|
|
|
EXTRA_DIST = \
|
|
$(sources) \
|
|
gconf-sharp.pc.in
|
|
|
|
references = \
|
|
/r:../../glib/glib-sharp.dll
|
|
|
|
sources = \
|
|
ClientBase.cs \
|
|
Client.cs \
|
|
ChangeSet.cs \
|
|
_Entry.cs \
|
|
NoSuchKeyException.cs \
|
|
NotifyEventArgs.cs \
|
|
NotifyEventHandler.cs \
|
|
NotifyWrapper.cs \
|
|
Value.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
$(ASSEMBLY): $(build_sources)
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|