mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 13:55:30 +00:00
8fd87b2e0a
* configure.in : kill a ton of redundant stuff. * AssemblyInfo.cs.in : moved here, only need one. * Makefile.include : rules for building generated assemblies. * Makefile.am : removed gtk-sharp-2.0.pc handling. * */AssemblyInfo.cs.in : killed * */Makefile.am : refactored out a ton of rules to an include. * */*-pc.in : added Cflags entries pointing to the gapi files. * generator/CodeGenerator.cs : add -I: synonym --include. * gnomevfs/gnome-vfs-api.raw : remamed from gnomevfs-api.raw. * gtk/gtk-sharp-2.0.pc.in : moved here from top. * parser/gapi-fixup.cs : add --symbol arg to merge sym files. * sources/gtk-sharp-sources.xml : remamed gnome-vfs-api.raw. svn path=/trunk/gtk-sharp/; revision=38551
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
if ENABLE_GNOME
|
|
TARGET = $(ASSEMBLY) $(ASSEMBLY).config
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gconf-sharp-2.0.pc
|
|
else
|
|
TARGET =
|
|
endif
|
|
noinst_DATA = $(TARGET)
|
|
CLEANFILES = $(ASSEMBLY) gtk-sharp.snk
|
|
DISTCLEANFILES = gconf-sharp-2.0.pc $(ASSEMBLY).config
|
|
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
ASSEMBLY_NAME = gconf-sharp
|
|
|
|
EXTRA_DIST = \
|
|
$(sources) \
|
|
$(ASSEMBLY).config.in \
|
|
gconf-sharp-2.0.pc.in
|
|
|
|
references = \
|
|
/r:../../glib/glib-sharp.dll
|
|
|
|
sources = \
|
|
ClientBase.cs \
|
|
Client.cs \
|
|
ChangeSet.cs \
|
|
Engine.cs \
|
|
_Entry.cs \
|
|
NoSuchKeyException.cs \
|
|
NotifyEventArgs.cs \
|
|
NotifyEventHandler.cs \
|
|
NotifyWrapper.cs \
|
|
Value.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) ../../AssemblyInfo.cs
|
|
|
|
gtk-sharp.snk: $(top_srcdir)/gtk-sharp.snk
|
|
cp $(top_srcdir)/gtk-sharp.snk .
|
|
|
|
$(ASSEMBLY): $(build_sources) gtk-sharp.snk
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|
|
install-data-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS) || exit 1; \
|
|
fi
|
|
|
|
uninstall-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
|
|
fi
|
|
|