mirror of
https://github.com/dynup/kpatch
synced 2025-02-11 15:11:46 +00:00
12 lines
151 B
Makefile
12 lines
151 B
Makefile
SUBDIRS = kpatch-kmod tools
|
|
|
|
test: test.c
|
|
$(CC) -g -o $@ $^ -lelf
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@; \
|
|
done
|
|
|