diff options
| author | Hans J. Koch <hjk@linutronix.de> | 2009-06-20 03:00:55 +0200 |
|---|---|---|
| committer | Hans J. Koch <hjk@linutronix.de> | 2009-06-20 03:00:55 +0200 |
| commit | d3835cbfea3bbc19b386f31c4972d4bc37b9347b (patch) | |
| tree | 2b7b2c8014adf16d185a63043e39dec97f221dcc /linux-basics | |
| parent | 885ad2f166b61447f0ebf858a8a8dc84a3fba857 (diff) | |
Added Makefiles in each folder to allow make all or make clean from top level directory
Diffstat (limited to 'linux-basics')
| -rw-r--r-- | linux-basics/Makefile | 6 |
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 |
