2004-04-03 05:12:17 +00:00
|
|
|
if ENABLE_GNOME
|
2004-03-12 21:18:11 +00:00
|
|
|
ASSEMBLY = gconf-sharp.dll
|
2004-04-29 15:00:24 +00:00
|
|
|
TARGETS = $(ASSEMBLY) $(ASSEMBLY).config
|
2004-04-03 05:12:17 +00:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = gconf-sharp.pc
|
|
|
|
else
|
|
|
|
ASSEMBLY =
|
2004-04-29 15:00:24 +00:00
|
|
|
TARGETS =
|
2004-04-03 05:12:17 +00:00
|
|
|
endif
|
2004-03-12 21:18:11 +00:00
|
|
|
assemblydir = $(libdir)
|
2004-04-29 15:00:24 +00:00
|
|
|
assembly_DATA = $(TARGETS)
|
2004-03-12 21:18:11 +00:00
|
|
|
CLEANFILES = $(ASSEMBLY)
|
|
|
|
|
2004-04-29 22:19:30 +00:00
|
|
|
DISTCLEANFILES = gconf-sharp.pc $(ASSEMBLY).config AssemblyInfo.cs
|
2004-04-03 05:12:17 +00:00
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
EXTRA_DIST = \
|
2004-04-03 05:12:17 +00:00
|
|
|
$(sources) \
|
2004-04-29 15:00:24 +00:00
|
|
|
$(ASSEMBLY).config.in \
|
2004-04-29 22:19:30 +00:00
|
|
|
AssemblyInfo.cs.in \
|
2004-04-03 05:12:17 +00:00
|
|
|
gconf-sharp.pc.in
|
2004-03-12 21:18:11 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2004-04-29 22:19:30 +00:00
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
2004-03-12 21:18:11 +00:00
|
|
|
|
|
|
|
$(ASSEMBLY): $(build_sources)
|
|
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|
|
|