GtkSharp/sample/tutorial/Makefile
Johannes Roith f1d358bf18 add new directories
svn path=/trunk/gtk-sharp/; revision=9196
2002-11-26 14:17:07 +00:00

33 lines
473 B
Makefile

SUBDIRS = helloworld \
helloworld2 \
base \
arrow \
aspectframe \
filesel \
frame \
label \
table \
buttons \
radiobuttons \
scrolledwin \
checkbox \
eventbox \
packing \
rangewidget \
scribble \
togglebutton \
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