CC=clang
LD=llc
CFLAGS=-O2 -Wall

simple-bpf.o: simple-bpf.c
	$(CC) $(CFLAGS) -target bpf -c simple-bpf.c

clean:
	rm -f simple-bpf.o
