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 +