summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-11-27 07:49:17 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-11-27 07:49:17 +0100
commitab121f379a3cff458c90e6f480ba4bb68c8733dd (patch)
treea9851af109ee83646d108bc247d03b131461b764 /Makefile
downloadldd3-ab121f379a3cff458c90e6f480ba4bb68c8733dd.tar.gz
Linux Device Drivers 3 examples
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e3e7fc2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+
+SUBDIRS = misc-progs misc-modules \
+ skull scull scullc sculld scullp scullv sbull snull\
+ short shortprint pci simple usb tty lddbus
+
+all: subdirs
+
+subdirs:
+ for n in $(SUBDIRS); do $(MAKE) -C $$n || exit 1; done
+
+clean:
+ for n in $(SUBDIRS); do $(MAKE) -C $$n clean; done