cd73a17587
* README : Describe the new make procedure. * configure.in : Add the new Makefile generation. * makefile : add the glue dir, make linux the default build, add an install target * */makefile.win32 : temp build files for win32 * */Makefile.in : new configurable make system * */makefile : killed * generator/BoxedGen.cs : Now uses GLib.Boxed * generator/ObjectGen.cs : Use Values for Props. * generator/SymbolTable.cs : Add IsEnum method. * glib/Boxed.cs : Major overhaul. * glib/Object.cs : Remove type specific (Get|Set)Property. Now use GValue based property accessors. * glib/TypeFundamentals.cs : Update to current values. * glib/Value.cs : Refactor to use glue. svn path=/trunk/gtk-sharp/; revision=4236
34 lines
621 B
Makefile
34 lines
621 B
Makefile
MCS=mcs
|
|
SOURCES=BoxedGen.cs \
|
|
CallbackGen.cs \
|
|
CodeGenerator.cs \
|
|
EnumGen.cs \
|
|
IGeneratable.cs \
|
|
InterfaceGen.cs \
|
|
ObjectGen.cs \
|
|
Parser.cs \
|
|
SignalHandler.cs \
|
|
Statistics.cs \
|
|
StructBase.cs \
|
|
StructGen.cs \
|
|
SymbolTable.cs
|
|
|
|
all: linux
|
|
|
|
windows: *.cs
|
|
$(CSC) /unsafe /out:codegen.exe *.cs
|
|
./codegen gtkapi.xml
|
|
|
|
linux: generated-stamp
|
|
|
|
generated-stamp: codegen.exe gtkapi.xml
|
|
mono ./codegen.exe gtkapi.xml && touch generated-stamp
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|
|
|
|
install: all
|
|
@echo "Nothing to install in generator."
|
|
|
|
codegen.exe: *.cs
|
|
$(MCS) --unsafe -o codegen.exe -r System.Xml.dll *.cs
|