mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 21:45:28 +00:00
9693ee998e
* configure.in: Conditionally compile Gnome. * parser/gapi_pp.pl: Handle line breaks in function declarations. * parser/gapi2xml.pl: Handle non-literals in property definitions. * glue/program.c: Added. * glue/Makefile.am: Add program.c (conditionally compiled). Update INCLUDES. * gnome/Makefile.in: Conditionally compile this. * gnome/Program.custom, Modules.cs: Added. * samples/Makefile.in: Conditionally compile gnome example. * samples/GnomeHelloWorld.cs: Use Gnome.Program. svn path=/trunk/gtk-sharp/; revision=5609
41 lines
1.2 KiB
Makefile
Executable file
41 lines
1.2 KiB
Makefile
Executable file
MCS=mcs
|
|
|
|
@ENABLE_GNOME_TRUE@ GNOME_PATH=-L ../gnome
|
|
@ENABLE_GNOME_TRUE@ GNOME_ASSEMBLY=-r gnome-sharp
|
|
@ENABLE_GNOME_TRUE@ GNOME_TARGETS=gnome-hello-world.exe
|
|
|
|
local_paths=-L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk $(GNOME_PATH)
|
|
all_assemblies=-r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp $(GNOME_ASSEMBLY) -r System.Drawing
|
|
|
|
|
|
all: linux
|
|
|
|
windows:
|
|
$(CSC) /unsafe /out:gtk-hello-world.exe /r:../glib/glib-sharp.dll /r:../gtk/gtk-sharp.dll /r:../gdk/gdk-sharp.dll HelloWorld.cs
|
|
$(CSC) /unsafe /out:button.exe /r:../glib/glib-sharp.dll /r:../gtk/gtk-sharp.dll ButtonApp.cs
|
|
|
|
linux: gtk-hello-world.exe button.exe menu.exe $(GNOME_TARGETS)
|
|
|
|
gtk-hello-world.exe: HelloWorld.cs
|
|
$(MCS) --unsafe -o gtk-hello-world.exe $(local_paths) $(all_assemblies) HelloWorld.cs
|
|
|
|
gnome-hello-world.exe: GnomeHelloWorld.cs
|
|
$(MCS) --unsafe -o gnome-hello-world.exe $(local_paths) $(all_assemblies) GnomeHelloWorld.cs
|
|
|
|
button.exe: ButtonApp.cs
|
|
$(MCS) --unsafe -o button.exe $(local_paths) $(all_assemblies) ButtonApp.cs
|
|
|
|
menu.exe: Menu.cs
|
|
$(MCS) --unsafe -o menu.exe $(local_paths) $(all_assemblies) Menu.cs
|
|
|
|
clean:
|
|
rm -f *.exe
|
|
|
|
unix:
|
|
@echo "'make unix' is broken for now."
|
|
|
|
install: linux
|
|
@echo "Nothing to install."
|
|
|
|
|