mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 08:35:36 +00:00
57f06abbfe
* */Makefile.am : fix gacutil for new package switch * */*.pc.in : fix -libs var for new dll path svn path=/trunk/gtk-sharp/; revision=26644
53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
if ENABLE_GNOME
|
|
TARGET=$(ASSEMBLY)
|
|
else
|
|
TARGET=
|
|
endif
|
|
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
ASSEMBLY_NAME = gconf-sharp-peditors
|
|
noinst_DATA = $(TARGET)
|
|
CLEANFILES = $(ASSEMBLY) gtk-sharp.pub
|
|
DISTCLEANFILES = AssemblyInfo.cs
|
|
|
|
EXTRA_DIST = \
|
|
AssemblyInfo.cs.in \
|
|
PropertyEditorColorPicker.cs \
|
|
$(sources)
|
|
|
|
references = \
|
|
/r:../../glib/glib-sharp.dll /r:../../pango/pango-sharp.dll /r:../../atk/atk-sharp.dll /r:../../gdk/gdk-sharp.dll /r:../../gtk/gtk-sharp.dll /r:../../art/art-sharp.dll /r:../../gnome/gnome-sharp.dll /r:../../glade/glade-sharp.dll /r:../GConf/gconf-sharp.dll
|
|
|
|
sources = \
|
|
PropertyEditor.cs \
|
|
PropertyEditorBool.cs \
|
|
PropertyEditorEnum.cs \
|
|
PropertyEditorEntry.cs \
|
|
PropertyEditorFileEntry.cs \
|
|
PropertyEditorOptionMenu.cs \
|
|
PropertyEditorRadioButton.cs \
|
|
PropertyEditorSpinButton.cs \
|
|
PropertyEditorToggleButton.cs \
|
|
EditorShell.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
|
|
|
gtk-sharp.pub: $(top_srcdir)/gtk-sharp.pub
|
|
cp $(top_srcdir)/gtk-sharp.pub .
|
|
|
|
$(ASSEMBLY): $(build_sources) gtk-sharp.pub
|
|
$(CSC) /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|
|
install-data-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /root $(DESTDIR)$(libdir)"; \
|
|
$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE) /root $(DESTDIR)$(libdir) || exit 1; \
|
|
fi
|
|
|
|
uninstall-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE) /root $(DESTDIR)$(libdir)"; \
|
|
$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE) /root $(DESTDIR)$(libdir) || exit 1; \
|
|
fi
|
|
|