summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2009-06-22 15:47:30 +0200
committerManuel Traut <manut@linutronix.de>2009-06-22 15:47:30 +0200
commit9cbb0a699f398daffa8c1808d02bf447ebf0c1f0 (patch)
treeea3f4d4081b0648e1da7b1e1d8d3dabe12705a0a /Makefile
parent9e0bab8ec70646ed9c51d5c7d272da4b51698c6c (diff)
parent719085c3dc98ab3df272476e16e983e4a16fe14b (diff)
Merge branch 'master' of ssh://tglx.de/home/linutronix/git/schulung
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4929de1..36e06c2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,8 @@
+SUBDIRS = kernel-devel linux-basics realtime application-devel
+
+default:
+ make all
+
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 +15,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