mirror of
https://github.com/dynup/kpatch
synced 2025-02-06 12:11:33 +00:00
9 lines
112 B
Makefile
9 lines
112 B
Makefile
SUBDIRS = kpatch-kmod tools
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@; \
|
|
done
|
|
|