blob: e3e7fc21ba236f28ec6b92c5c726f88c85334493 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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
|