16 lines
313 B
Makefile
16 lines
313 B
Makefile
GCC=gcc
|
|
CL=clang-11
|
|
CFLAGS=-Wall
|
|
LIBS=-lbpf
|
|
|
|
all: ssh-trace.ebpf.o ssh-trace
|
|
|
|
ssh-trace.ebpf.o: src/ssh-trace.ebpf.c
|
|
$(CL) -g -O2 -target bpf -c src/ssh-trace.ebpf.c -o src/ssh-trace.ebpf.o
|
|
|
|
ssh-trace: src/load_bpf.c
|
|
$(GCC) $(CFLAGS) src/load_bpf.c -o ssh-trace $(LIBS)
|
|
|
|
clean:
|
|
rm -rf src/*.o && rm ssh-trace
|