Ryujinx-GtkSharp/gconf/GConf/Makefile.am
Mike Kestner 9bc8928f88 2004-04-29 Mike Kestner <mkestner@ximian.com>
* configure.in : expand the new config files.
	* */*config.in : the per-assembly config files.
	* */Makefile.am : dist, clean, and install the configs.
	* gnome/*.c* : fix some errant DllImports.

svn path=/trunk/gtk-sharp/; revision=26301
2004-04-29 15:00:24 +00:00

40 lines
785 B
Makefile

if ENABLE_GNOME
ASSEMBLY = gconf-sharp.dll
TARGETS = $(ASSEMBLY) $(ASSEMBLY).config
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gconf-sharp.pc
else
ASSEMBLY =
TARGETS =
endif
assemblydir = $(libdir)
assembly_DATA = $(TARGETS)
CLEANFILES = $(ASSEMBLY)
DISTCLEANFILES = gconf-sharp.pc $(ASSEMBLY).config
EXTRA_DIST = \
$(sources) \
$(ASSEMBLY).config.in \
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)