linux_module_learn/examples/Makefile

13 lines
289 B
Makefile
Raw Permalink Normal View History

2023-07-22 13:42:32 +08:00
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