From 21fa1ce80ac9cd53a803ec2ac5b8ad82b90e2972 Mon Sep 17 00:00:00 2001 From: Johannes Roith Date: Tue, 5 Nov 2002 15:18:03 +0000 Subject: [PATCH] import tutorial examples svn path=/trunk/gtk-sharp/; revision=8833 --- sample/tutorial/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 sample/tutorial/Makefile diff --git a/sample/tutorial/Makefile b/sample/tutorial/Makefile new file mode 100644 index 000000000..233915662 --- /dev/null +++ b/sample/tutorial/Makefile @@ -0,0 +1,27 @@ + +SUBDIRS = helloworld \ + helloworld2 \ + base \ + arrow \ + aspectframe \ + filesel \ + frame \ + label \ + table \ + buttons \ + radiobuttons \ + scrolledwin \ + + +all: + list='$(SUBDIRS)'; \ + for subdir in $$list; do \ + (cd $$subdir && $(MAKE)); \ + done + +clean: + list='$(SUBDIRS)'; \ + for subdir in $$list; do \ + (cd $$subdir && $(MAKE) clean); \ + done +