Ryujinx-GtkSharp/cairo/Makefile.am
Mike Kestner 2110dad6d1 2009-01-08 Mike Kestner <mkestner@novell.com>
* cairo/Makefile.am: use mono.snk to sign the Mono.Cairo assembly
	so that it's compatible with mono built versions.  Initial patch
	from Christian Hoff with a few tweaks.

svn path=/trunk/gtk-sharp/; revision=122821
2009-01-08 20:05:24 +00:00

98 lines
2.2 KiB
Makefile

ASSEMBLY_NAME = Mono.Cairo
ASSEMBLY = $(ASSEMBLY_NAME).dll
POLICY_ASSEMBLY = policy.1.0.$(ASSEMBLY)
POLICY_CONFIG = policy.1.0.config
if ENABLE_MONO_CAIRO
TARGET=$(ASSEMBLY) $(POLICY_ASSEMBLY)
else
TARGET=
endif
noinst_DATA = $(TARGET)
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(POLICY_ASSEMBLY) mono.snk
sources = \
Antialias.cs \
AssemblyInfo.cs \
Cairo.cs \
Content.cs \
Context.cs \
DirectFBSurface.cs \
Extend.cs \
FillRule.cs \
Filter.cs \
FontExtents.cs \
FontFace.cs \
FontOptions.cs \
FontSlant.cs \
FontType.cs \
FontWeight.cs \
Format.cs \
GlitzSurface.cs \
Glyph.cs \
Gradient.cs \
HintMetrics.cs \
HintStyle.cs \
ImageSurface.cs \
LinearGradient.cs \
LineCap.cs \
LineJoin.cs \
Matrix.cs \
NativeMethods.cs \
Operator.cs \
Path.cs \
Pattern.cs \
PatternType.cs \
PdfSurface.cs \
PSSurface.cs \
RadialGradient.cs \
Rectangle.cs \
ScaledFont.cs \
SolidPattern.cs \
Status.cs \
SubpixelOrder.cs \
Surface.cs \
SurfacePattern.cs \
SurfaceType.cs \
SvgSurface.cs \
SvgVersion.cs \
TextExtents.cs \
Win32Surface.cs \
XcbSurface.cs \
XlibSurface.cs \
#
build_sources = $(addprefix $(srcdir)/, $(sources))
mono.snk: $(top_srcdir)/mono.snk
cp $(top_srcdir)/mono.snk .
$(ASSEMBLY): $(build_sources) mono.snk
@rm -f $(ASSEMBLY).mdb
$(CSC) $(CSFLAGS) -nowarn:0169,0612,0618 -out:$(ASSEMBLY) -target:library $(references) $(build_sources)
$(POLICY_ASSEMBLY): $(srcdir)/$(POLICY_CONFIG) mono.snk
echo "Creating policy.1.0.$(ASSEMBLY)";
$(AL) -link:$(POLICY_CONFIG) -out:$@ -keyfile:mono.snk;
install-data-local:
@if test -n '$(TARGET)'; then \
echo "$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS)"; \
$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS) || exit 1; \
echo "$(GACUTIL) /i $(POLICY_ASSEMBLY) /f $(GACUTIL_FLAGS)"; \
$(GACUTIL) /i $(POLICY_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; \
echo "$(GACUTIL) /u policy.1.0.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
$(GACUTIL) /u policy.1.0.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
fi
EXTRA_DIST = $(sources) $(POLICY_CONFIG)