summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4929de1..494db82 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+SUBDIRS = kernel-devel linux-basics realtime application-devel
+
latex-install:
mkdir -p /usr/share/texmf-texlive/tex/latex/linutronix
cp latex/lxarticle/lxarticle.cls /usr/share/texmf-texlive/tex/latex/linutronix/
@@ -10,3 +12,7 @@ latex-install:
cp latex/latex-beamer/*vf /usr/share/texmf/fonts/vf/linutronix
texhash
+all clean::
+ for dir in $(SUBDIRS) ; do \
+ (cd $$dir && make $@); \
+ done