summaryrefslogtreecommitdiff
path: root/linux-basics/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'linux-basics/Makefile')
-rw-r--r--linux-basics/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-basics/Makefile b/linux-basics/Makefile
new file mode 100644
index 0000000..ab3b327
--- /dev/null
+++ b/linux-basics/Makefile
@@ -0,0 +1,6 @@
+SUBDIRS = boot-process filesystem-structure important-tools linux-processes sh-programming what-is-linux
+
+all clean::
+ for dir in $(SUBDIRS) ; do \
+ (cd $$dir && make $@); \
+ done