mirror of
https://github.com/dynup/kpatch
synced 2025-01-27 23:32:44 +00:00
6ab1273021
Signed-off-by: Seth Jennings <sjenning@redhat.com>
14 lines
360 B
Makefile
14 lines
360 B
Makefile
all: create-diff-object add-patches-section link-vmlinux-syms
|
|
|
|
create-diff-object: create-diff-object.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -lelf
|
|
|
|
add-patches-section: add-patches-section.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -lelf
|
|
|
|
link-vmlinux-syms: link-vmlinux-syms.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -lelf
|
|
|
|
clean:
|
|
$(RM) -Rf create-diff-object add-patches-section link-vmlinux-syms
|