mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:15:38 +00:00
90a870e2de
* */*.cs : scrub for StringToPtrAnsi and string usage in DllImports. * */*.custom : begin the scrub here too. * generator/ConstStringGen.cs : implement IManualMarshaler and move to 100% IntPtr marshaling. * generator/Ctor.cs : call Body.Finish too. * generator/IManualMarshaler.cs : new interface for generatables that marshal manually and need cleanup. * generator/Makefile.am : new file. * generator/MethodBody.cs : use IManualMarshaler if applicable. svn path=/trunk/gtk-sharp/; revision=41579
63 lines
1.2 KiB
Makefile
63 lines
1.2 KiB
Makefile
assemblydir = $(libdir)/gtk-sharp-2.0
|
|
assembly_DATA = gapi_codegen.exe
|
|
bin_SCRIPTS = gapi2-codegen
|
|
CLEANFILES = gapi_codegen.exe
|
|
DISTCLEANFILES = gapi2-codegen
|
|
|
|
references =
|
|
|
|
sources = \
|
|
AliasGen.cs \
|
|
BoxedGen.cs \
|
|
ByRefGen.cs \
|
|
CallbackGen.cs \
|
|
ChildProperty.cs \
|
|
ClassBase.cs \
|
|
ClassGen.cs \
|
|
CodeGenerator.cs \
|
|
ConstStringGen.cs \
|
|
Ctor.cs \
|
|
EnumGen.cs \
|
|
Field.cs \
|
|
GenBase.cs \
|
|
GenerationInfo.cs \
|
|
IGeneratable.cs \
|
|
IManualMarshaler.cs \
|
|
ImportSignature.cs \
|
|
InterfaceGen.cs \
|
|
LPGen.cs \
|
|
LPUGen.cs \
|
|
ManagedCallString.cs \
|
|
ManualGen.cs \
|
|
MarshalGen.cs \
|
|
MethodBase.cs \
|
|
MethodBody.cs \
|
|
Method.cs \
|
|
ObjectGen.cs \
|
|
OpaqueGen.cs \
|
|
Parameters.cs \
|
|
Parser.cs \
|
|
Property.cs \
|
|
ReturnValue.cs \
|
|
Signal.cs \
|
|
Signature.cs \
|
|
SimpleBase.cs \
|
|
SimpleGen.cs \
|
|
Statistics.cs \
|
|
StructBase.cs \
|
|
StructGen.cs \
|
|
SymbolTable.cs \
|
|
VirtualMethod.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)
|
|
|