GtkSharp/sample/tutorial/Makefile
Alejandro Sánchez Acosta 617216a805 Added new GTK# sample.
svn path=/trunk/gtk-sharp/; revision=9682
2002-12-15 17:07:00 +00:00

34 lines
489 B
Makefile

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