summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHans J. Koch <hjk@linutronix.de>2009-06-20 03:00:55 +0200
committerHans J. Koch <hjk@linutronix.de>2009-06-20 03:00:55 +0200
commitd3835cbfea3bbc19b386f31c4972d4bc37b9347b (patch)
tree2b7b2c8014adf16d185a63043e39dec97f221dcc /Makefile
parent885ad2f166b61447f0ebf858a8a8dc84a3fba857 (diff)
Added Makefiles in each folder to allow make all or make clean from top level directory
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