You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
prefix = /usr
|
|
|
|
CC = gcc
|
|
|
|
all : bpf_jit_disasm
|
|
|
|
bpf_jit_disasm : CFLAGS = -Wall -O2
|
|
bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl
|
|
bpf_jit_disasm : bpf_jit_disasm.o
|
|
|
|
clean :
|
|
rm -rf *.o bpf_jit_disasm
|
|
|
|
install :
|
|
install bpf_jit_disasm $(prefix)/bin/bpf_jit_disasm
|
|
|