mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:45:37 +00:00
aee0a1f894
* generator/GObjectGen.cs: Added new generatable to handle plain GObjects the same way we do subclasses. * generator/ManualGen.cs: Make FromNative/FromNativeReturn virtual to allow overriding. * generator/SymbolTable.cs: Use GObjectGen instead of ManualGen for GObject. * generator/Makefile.am: Add GObjectGen.cs. svn path=/trunk/gtk-sharp/; revision=25651
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
assemblydir = $(bindir)
|
|
assembly_DATA = gapi_codegen.exe
|
|
bin_SCRIPTS = gapi-codegen
|
|
CLEANFILES = gapi_codegen.exe
|
|
DISTCLEANFILES = gapi-codegen
|
|
|
|
references =
|
|
|
|
sources = \
|
|
AliasGen.cs \
|
|
BoxedGen.cs \
|
|
ByRefGen.cs \
|
|
CallbackGen.cs \
|
|
ClassBase.cs \
|
|
ClassGen.cs \
|
|
CodeGenerator.cs \
|
|
ConstStringGen.cs \
|
|
Ctor.cs \
|
|
CustomMarshalerGen.cs \
|
|
EnumGen.cs \
|
|
Field.cs \
|
|
GenBase.cs \
|
|
GenerationInfo.cs \
|
|
GObjectGen.cs \
|
|
IGeneratable.cs \
|
|
ImportSignature.cs \
|
|
InterfaceGen.cs \
|
|
ManagedCallString.cs \
|
|
ManualGen.cs \
|
|
MethodBody.cs \
|
|
Method.cs \
|
|
ObjectGen.cs \
|
|
OpaqueGen.cs \
|
|
Parameters.cs \
|
|
Parser.cs \
|
|
Property.cs \
|
|
Signal.cs \
|
|
SignalHandler.cs \
|
|
Signature.cs \
|
|
SimpleGen.cs \
|
|
Statistics.cs \
|
|
StringGen.cs \
|
|
StructBase.cs \
|
|
StructGen.cs \
|
|
SymbolTable.cs \
|
|
VMSignature.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
makefile.win32 \
|
|
$(dist_sources)
|
|
|
|
gapi_codegen.exe: $(build_sources)
|
|
$(CSC) /out:gapi_codegen.exe $(references) $(build_sources)
|
|
|