Ryujinx-GtkSharp/sample/gconf/Makefile.am
Mike Kestner 6fd6ecbbdb 2004-05-05 Mike Kestner <mkestner@ximian.com>
* sample/gconf/Makefile.am : fix some whitespace.  I love you, auto*.

svn path=/trunk/gtk-sharp/; revision=26710
2004-05-04 19:08:44 +00:00

32 lines
1.1 KiB
Makefile

if ENABLE_GNOME
TARGET = sample.exe
else
TARGET =
endif
FILES = \
Settings.cs \
$(srcdir)/main.cs
SCHEMA = $(srcdir)/sample.schema
RESOURCES = /resource:$(srcdir)/sample.glade
REFERENCES = /r:../../glib/glib-sharp.dll /r:../../pango/pango-sharp.dll /r:../../atk/atk-sharp.dll /r:../../art/art-sharp.dll /r:../../gdk/gdk-sharp.dll /r:$(GCONFDIR)/GConf/gconf-sharp.dll /r:../../gtk/gtk-sharp.dll /r:../../gnome/gnome-sharp.dll /r:../../glade/glade-sharp.dll /r:$(GCONFDIR)/GConf.PropertyEditors/gconf-sharp-peditors.dll
top_builddir=../..
GCONFDIR=$(top_builddir)/gconf
noinst_SCRIPTS = $(TARGET)
sample.exe: $(SCHEMA) $(srcdir)/sample.glade $(FILES)
$(CSC) /out:sample.exe $(FILES) $(REFERENCES) $(RESOURCES)
Settings.cs: $(SCHEMA)
MONO_PATH=$(top_builddir)/gconf/GConf/gconf-sharp.dll:${MONO_PATH} $(RUNTIME) $(GCONFDIR)/tools/gconfsharp-schemagen.exe Sample $(SCHEMA) > Settings.cs
install-hook:
GCONF_CONFIG_SOURCE="" gconftool-2 --makefile-install-rule $(SCHEMA)
CLEANFILES = sample.exe Settings.cs
EXTRA_DIST = main.cs sample.schema sample.glade sample.gladep