mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 18:45:28 +00:00
a948792be0
* */Makefile.am: standardize on - options over / options for consistency. Also assists with build on msys. [Fixes #550667] svn path=/trunk/gtk-sharp/; revision=147125
129 lines
3.6 KiB
Makefile
129 lines
3.6 KiB
Makefile
SUBDIRS = glue
|
|
|
|
TARGET = $(ASSEMBLY)
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
ASSEMBLY_NAME = glib-sharp
|
|
noinst_DATA = $(ASSEMBLY) $(ASSEMBLY).config $(POLICY_ASSEMBLIES)
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = glib-sharp-3.0.pc
|
|
gapidir = $(datadir)/gapi-3.0
|
|
gapi_DATA = glib-api.xml
|
|
|
|
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb gtk-sharp.snk AssemblyInfo.cs $(POLICY_ASSEMBLIES) $(POLICY_CONFIGS)
|
|
DISTCLEANFILES = $(ASSEMBLY).config
|
|
|
|
POLICY_ASSEMBLIES = $(addsuffix .$(ASSEMBLY), $(addprefix policy., $(POLICY_VERSIONS)))
|
|
POLICY_CONFIGS = $(addsuffix .config, $(addprefix policy., $(POLICY_VERSIONS)))
|
|
|
|
references =
|
|
|
|
sources = \
|
|
Argv.cs \
|
|
Boxed.cs \
|
|
CDeclCallbackAttribute.cs \
|
|
ClassInitializerAttribute.cs \
|
|
ConnectBeforeAttribute.cs \
|
|
DefaultSignalHandlerAttribute.cs \
|
|
DelegateWrapper.cs \
|
|
DestroyNotify.cs \
|
|
EnumWrapper.cs \
|
|
ExceptionManager.cs \
|
|
FileUtils.cs \
|
|
Format.cs \
|
|
GException.cs \
|
|
GInterfaceAdapter.cs \
|
|
GInterfaceAttribute.cs \
|
|
Global.cs \
|
|
GString.cs \
|
|
GType.cs \
|
|
GTypeAttribute.cs \
|
|
Idle.cs \
|
|
IgnoreClassInitializersAttribute.cs \
|
|
InitiallyUnowned.cs \
|
|
IOChannel.cs \
|
|
IWrapper.cs \
|
|
ListBase.cs \
|
|
List.cs \
|
|
Log.cs \
|
|
MainContext.cs \
|
|
MainLoop.cs \
|
|
ManagedValue.cs \
|
|
Markup.cs \
|
|
Marshaller.cs \
|
|
MissingIntPtrCtorException.cs \
|
|
NotifyHandler.cs \
|
|
Object.cs \
|
|
ObjectManager.cs \
|
|
Opaque.cs \
|
|
ParamSpec.cs \
|
|
Priority.cs \
|
|
PropertyAttribute.cs \
|
|
PtrArray.cs \
|
|
Signal.cs \
|
|
SignalArgs.cs \
|
|
SignalAttribute.cs \
|
|
SignalCallback.cs \
|
|
SignalClosure.cs \
|
|
SList.cs \
|
|
Source.cs \
|
|
Spawn.cs \
|
|
Thread.cs \
|
|
Timeout.cs \
|
|
ToggleRef.cs \
|
|
TypeConverter.cs \
|
|
TypeFundamentals.cs \
|
|
TypeInitializerAttribute.cs \
|
|
UnwrappedObject.cs \
|
|
ValueArray.cs \
|
|
Value.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(dist_sources) \
|
|
$(ASSEMBLY).config.in \
|
|
glib-sharp-3.0.pc.in \
|
|
glib-api.xml
|
|
|
|
gtk-sharp.snk: $(top_srcdir)/gtk-sharp.snk
|
|
cp $(top_srcdir)/gtk-sharp.snk .
|
|
|
|
AssemblyInfo.cs: $(top_builddir)/AssemblyInfo.cs
|
|
cp $(top_builddir)/AssemblyInfo.cs .
|
|
|
|
$(ASSEMBLY): $(build_sources) gtk-sharp.snk AssemblyInfo.cs
|
|
@rm -f $(ASSEMBLY).mdb
|
|
$(CSC) $(CSFLAGS) -unsafe -nowarn:0169,0612,0618 -out:$(ASSEMBLY) -target:library $(references) $(build_sources)
|
|
|
|
policy.%.config: $(top_builddir)/policy.config
|
|
sed -e "s/@ASSEMBLY_NAME@/$(ASSEMBLY_NAME)/" -e "s/@POLICY@/$*/" $(top_builddir)/policy.config > $@
|
|
|
|
$(POLICY_ASSEMBLIES) : policy.%.$(ASSEMBLY): policy.%.config gtk-sharp.snk
|
|
$(AL) -link:policy.$*.config -out:$@ -keyfile:gtk-sharp.snk
|
|
|
|
install-data-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) -i $(ASSEMBLY) -f $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) -i $(ASSEMBLY) -f $(GACUTIL_FLAGS) || exit 1; \
|
|
if test -n '$(POLICY_VERSIONS)'; then \
|
|
for i in $(POLICY_VERSIONS); do \
|
|
echo "$(GACUTIL) -i policy.$$i.$(ASSEMBLY) -f $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) -i policy.$$i.$(ASSEMBLY) -f $(GACUTIL_FLAGS) || exit 1; \
|
|
done \
|
|
fi \
|
|
fi
|
|
|
|
uninstall-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) -u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) -u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
|
|
if test -n '$(POLICY_VERSIONS)'; then \
|
|
for i in $(POLICY_VERSIONS); do \
|
|
echo "$(GACUTIL) -u policy.$$i.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) -u policy.$$i.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
|
|
done \
|
|
fi \
|
|
fi
|
|
|