blob: 10d4fc67278f631d929131924ae71bad36df82c4 (
plain)
1
2
3
4
5
6
|
SUBDIRS = boot-process filesystem-structure important-tools linux-processes sh-programming what-is-linux linux-mm-basics
all clean::
for dir in $(SUBDIRS) ; do \
(cd $$dir && make $@); \
done
|