mirror of
https://github.com/dynup/kpatch
synced 2024-12-27 15:52:02 +00:00
069a5dbad7
Signed-off-by: Seth Jennings <sjenning@redhat.com>
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
|
|
|