2011-01-08 04:15:04 +00:00
|
|
|
SNK = $(top_srcdir)/gtk-sharp.snk
|
2005-01-09 00:26:45 +00:00
|
|
|
API = $(pkg)-api.xml
|
|
|
|
RAW_API = $(pkg)-api.raw
|
|
|
|
|
|
|
|
ASSEMBLY_NAME = $(pkg)-sharp
|
2011-08-11 16:41:13 +00:00
|
|
|
ASSEMBLY_NAME_VERSION = $(ASSEMBLY_NAME),Version=$(API_VERSION)
|
2005-01-09 00:26:45 +00:00
|
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
|
|
|
2012-11-25 16:54:25 +00:00
|
|
|
GAPI_XSD=$(top_srcdir)/gapi.xsd
|
|
|
|
|
2005-09-22 04:26:52 +00:00
|
|
|
TARGET = $(pkg:=-sharp.dll) $(pkg:=-sharp.dll.config) $(POLICY_ASSEMBLIES)
|
2005-01-09 00:26:45 +00:00
|
|
|
noinst_DATA = $(TARGET)
|
2005-02-22 10:30:41 +00:00
|
|
|
TARGET_API = $(pkg:=-api.xml)
|
2009-07-23 17:18:03 +00:00
|
|
|
gapidir = $(datadir)/gapi-3.0
|
2012-11-25 16:54:25 +00:00
|
|
|
gapi_DATA = $(TARGET_API) $(GAPI_XSD)
|
2014-02-24 01:04:03 +00:00
|
|
|
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(POLICY_ASSEMBLIES) generated-stamp generated/*/*.cs $(API) glue/generated.c $(POLICY_CONFIGS)
|
2005-01-09 00:26:45 +00:00
|
|
|
DISTCLEANFILES = $(ASSEMBLY).config
|
|
|
|
|
2005-09-22 04:26:52 +00:00
|
|
|
POLICY_ASSEMBLIES = $(addsuffix .$(ASSEMBLY), $(addprefix policy., $(POLICY_VERSIONS)))
|
|
|
|
POLICY_CONFIGS = $(addsuffix .config, $(addprefix policy., $(POLICY_VERSIONS)))
|
|
|
|
|
2012-08-05 16:19:32 +00:00
|
|
|
EXTRA_DIST = $(RAW_API) $(SYMBOLS) $(ASSEMBLY).config.in $(METADATA) $(sources) $(add_dist)
|
2005-01-09 00:26:45 +00:00
|
|
|
|
|
|
|
build_symbols = $(addprefix --symbols=$(srcdir)/, $(SYMBOLS))
|
|
|
|
|
2013-10-13 14:37:08 +00:00
|
|
|
$(API): $(METADATA) $(RAW_API) $(SYMBOLS) $(top_builddir)/generator/gapi-fixup.exe
|
2005-01-09 00:26:45 +00:00
|
|
|
cp $(srcdir)/$(RAW_API) $(API)
|
|
|
|
chmod u+w $(API)
|
|
|
|
@if test -n '$(METADATA)'; then \
|
2013-10-13 14:37:08 +00:00
|
|
|
echo "$(RUNTIME) $(top_builddir)/generator/gapi-fixup.exe --api=$(API) --metadata=$(srcdir)/$(METADATA) $(build_symbols)"; \
|
|
|
|
$(RUNTIME) $(top_builddir)/generator/gapi-fixup.exe --api=$(API) --metadata=$(srcdir)/$(METADATA) $(build_symbols); \
|
2005-01-09 00:26:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
api_includes = $(addprefix -I:, $(INCLUDE_API))
|
|
|
|
|
2012-11-25 16:54:25 +00:00
|
|
|
generated-stamp: $(API) $(INCLUDE_API) $(top_builddir)/generator/gapi_codegen.exe $(GAPI_XSD)
|
2014-02-24 01:04:03 +00:00
|
|
|
rm -rf generated/* && \
|
2005-02-22 10:30:41 +00:00
|
|
|
$(RUNTIME) $(top_builddir)/generator/gapi_codegen.exe --generate $(API) \
|
2005-01-09 00:26:45 +00:00
|
|
|
$(api_includes) \
|
2012-08-05 16:19:32 +00:00
|
|
|
--outdir=generated --assembly-name=$(ASSEMBLY_NAME) \
|
2009-08-30 20:06:33 +00:00
|
|
|
--gluelib-name=$(pkg)sharpglue-3 --glue-filename=glue/generated.c \
|
* generator/StructBase.cs: update field-generation logic a bit
* generator/CodeGenerator.cs: add a --glue-includes flag
* generator/GenerationInfo.cs: Accept glue_includes value from
Main and output it to the glue_filename.
* generator/FieldBase.cs (Ignored): handle more ignorable cases.
(CheckGlue): New method to figure out what kind of glue we'll need
for a field.
(GenerateImports): generate appropriate imports per CheckGlue.
(GenerateGlue): Generate C glue for accessing a struct field;
either a fully-C-based accessor, or a method to just return the
field's offset in the struct.
(Generate): Use the generated glue to read the field.
* generator/PropertyBase.cs (CType): if the field is a single bit,
set its type to gboolean.
* generator/ObjectGen.cs (Generate):
* generator/OpaqueGen.cs (Generate): Call GenFields.
* generator/StructField.cs: Use FieldBase's glue-generation code
to handle bitfields. [#54489]
* generator/ObjectField.cs: Generates accessors for public fields
of objects and opaque structs. [#69514]
* generator/ClassBase.cs (ClassBase): Parse <fields> nodes and
create ObjectField objects.
(GenFields): Output field properties
(IgnoreMethod): Ignore Get/Set methods that duplicate fields
* generator/Makefile.am (sources): update
* {gdk,gnome,gtk,pango}/*.metadata: Mark some additional fields as
public. Rename/retype some fields for consistency with earlier
hand-coded bindings.
* {gdk,gnome,gtk,pango}/*.custom: Remove custom methods that can
now be autogenerated.
* {gdk,gnome,gtk,pango}/glue/*.c: Remove glue methods that can now
be autogenerated
* {gdk,glade,gnome,gtk,pango,vte}/Makefile.am
* {gdk,glade,gnome,gtk,pango,vte}/glue/Makefile.am
* {gdk,gnome,gtk,pango}/glue/makefile.win32: Update
svn path=/trunk/gtk-sharp/; revision=44563
2005-05-16 14:28:55 +00:00
|
|
|
--glue-includes=$(glue_includes) \
|
2012-11-25 16:54:25 +00:00
|
|
|
--schema=$(GAPI_XSD) \
|
2005-01-09 00:26:45 +00:00
|
|
|
&& touch generated-stamp
|
|
|
|
|
2009-01-24 04:47:54 +00:00
|
|
|
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 $(SNK)
|
|
|
|
$(AL) -link:policy.$*.config -out:$@ -keyfile:$(SNK)
|
2005-09-22 04:26:52 +00:00
|
|
|
|
2014-02-23 18:17:05 +00:00
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
2009-11-30 20:40:34 +00:00
|
|
|
build_references = $(addprefix -r:, $(references)) $(MONO_CAIRO_LIBS)
|
2005-01-09 00:26:45 +00:00
|
|
|
|
|
|
|
$(ASSEMBLY): generated-stamp $(SNK) $(build_sources) $(references)
|
2005-04-11 14:56:29 +00:00
|
|
|
@rm -f $(ASSEMBLY).mdb
|
2014-05-04 13:10:07 +00:00
|
|
|
$(CSC) $(CSFLAGS) -keyfile:$(SNK) -nowarn:0169,0612,0618 -unsafe -out:$(ASSEMBLY) -target:library $(build_references) $(GENERATED_SOURCES_OPTION) $(build_sources) $(top_builddir)$(ASSEMBLYINFO)
|
2005-01-09 00:26:45 +00:00
|
|
|
|
|
|
|
install-data-local:
|
2005-09-22 04:26:52 +00:00
|
|
|
@if test -n '$(pkg)'; then \
|
2009-11-30 20:40:34 +00:00
|
|
|
echo "$(GACUTIL) -i $(ASSEMBLY) -f $(GACUTIL_FLAGS)"; \
|
2014-02-23 16:07:10 +00:00
|
|
|
"$(GACUTIL)" -i $(ASSEMBLY) -f $(GACUTIL_FLAGS) || exit 1; \
|
2005-09-22 04:26:52 +00:00
|
|
|
if test -n '$(POLICY_VERSIONS)'; then \
|
|
|
|
for i in $(POLICY_VERSIONS); do \
|
2009-11-30 20:40:34 +00:00
|
|
|
echo "$(GACUTIL) -i policy.$$i.$(ASSEMBLY) -f $(GACUTIL_FLAGS)"; \
|
2014-02-23 16:07:10 +00:00
|
|
|
"$(GACUTIL)" -i policy.$$i.$(ASSEMBLY) -f $(GACUTIL_FLAGS) || exit 1; \
|
2005-09-22 04:26:52 +00:00
|
|
|
done \
|
|
|
|
fi \
|
2005-01-09 00:26:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
uninstall-local:
|
2005-09-22 04:26:52 +00:00
|
|
|
@if test -n '$(pkg)'; then \
|
2011-08-11 16:41:13 +00:00
|
|
|
echo "$(GACUTIL) -u $(ASSEMBLY_NAME_VERSION) $(GACUTIL_FLAGS)"; \
|
2014-02-23 16:07:10 +00:00
|
|
|
"$(GACUTIL)" -u $(ASSEMBLY_NAME_VERSION) $(GACUTIL_FLAGS) || exit 1; \
|
2005-09-22 04:26:52 +00:00
|
|
|
if test -n '$(POLICY_VERSIONS)'; then \
|
|
|
|
for i in $(POLICY_VERSIONS); do \
|
2009-11-30 20:40:34 +00:00
|
|
|
echo "$(GACUTIL) -u policy.$$i.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
|
2014-02-23 16:07:10 +00:00
|
|
|
"$(GACUTIL)" -u policy.$$i.$(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
|
2005-09-22 04:26:52 +00:00
|
|
|
done \
|
|
|
|
fi \
|
2005-01-09 00:26:45 +00:00
|
|
|
fi
|
2005-09-22 04:26:52 +00:00
|
|
|
|