2004-05-07 14:22:20 +00:00
|
|
|
assemblies = ../../glib/glib-sharp.dll ../../pango/pango-sharp.dll ../../atk/atk-sharp.dll ../../gdk/gdk-sharp.dll ../../gtk/gtk-sharp.dll
|
|
|
|
references = $(addprefix /r:, $(assemblies))
|
2004-03-12 21:18:11 +00:00
|
|
|
TARGETS = GtkDemo.exe
|
|
|
|
CLEANFILES = $(TARGETS)
|
|
|
|
noinst_SCRIPTS = $(TARGETS)
|
|
|
|
|
|
|
|
EXTRA_DIST = $(sources)
|
|
|
|
|
|
|
|
sources = \
|
|
|
|
DemoApplicationWindow.cs \
|
|
|
|
DemoButtonBox.cs \
|
|
|
|
DemoColorSelection.cs \
|
|
|
|
DemoDialog.cs \
|
|
|
|
DemoDrawingArea.cs \
|
|
|
|
DemoEditableCells.cs \
|
|
|
|
DemoImages.cs \
|
|
|
|
DemoItemFactory.cs \
|
|
|
|
DemoListStore.cs \
|
|
|
|
DemoMain.cs \
|
|
|
|
DemoMenus.cs \
|
|
|
|
DemoPanes.cs \
|
|
|
|
DemoPixbuf.cs \
|
|
|
|
DemoSizeGroup.cs \
|
|
|
|
DemoStockBrowser.cs \
|
|
|
|
DemoTextView.cs \
|
|
|
|
DemoTreeStore.cs
|
|
|
|
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources))
|
|
|
|
|
2004-05-07 14:22:20 +00:00
|
|
|
GtkDemo.exe: $(build_sources) $(assemblies)
|
2004-03-12 21:18:11 +00:00
|
|
|
$(CSC) -g /out:GtkDemo.exe $(build_sources) $(references)
|
|
|
|
|