mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 17:55:41 +00:00
28 lines
358 B
Makefile
28 lines
358 B
Makefile
|
|
||
|
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
|
||
|
|