import tutorial examples

svn path=/trunk/gtk-sharp/; revision=8833
This commit is contained in:
Johannes Roith 2002-11-05 15:18:03 +00:00
parent cca2363dae
commit 21fa1ce80a

27
sample/tutorial/Makefile Normal file
View File

@ -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