import tutorial examples
svn path=/trunk/gtk-sharp/; revision=8833
This commit is contained in:
parent
cca2363dae
commit
21fa1ce80a
1 changed files with 27 additions and 0 deletions
27
sample/tutorial/Makefile
Normal file
27
sample/tutorial/Makefile
Normal 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue