kpatch/elf-diff-copy/Makefile
Josh Poimboeuf 4feb144e98 It's alive...
The end-to-end patching works.  From object analysis to generation to
runtime patching.  It's still missing the scripting piece that will only
take a patch and kernel source dir as input.
2013-01-16 11:28:59 -06:00

11 lines
130 B
Makefile

CC=gcc
CFLAGS=-g -Wall
.PHONY: all
all: elf-diff-copy
elf-diff-copy: elf-diff-copy.c
$(CC) $(CFLAGS) -o $@ $^ -lelf -ludis86