mirror of https://github.com/dynup/kpatch
11 lines
130 B
Makefile
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
|
||
|
|