kpatch/tools/Makefile
Seth Jennings 6ab1273021 major rewrite to per-section function/data model
Signed-off-by: Seth Jennings <sjenning@redhat.com>
2014-02-11 10:25:48 -06:00

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