1 prefix = /usr 2 3 CC = gcc 4 LEX = flex 5 YACC = bison 6 7 CFLAGS += -Wall -O2 8 CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include 9 10 %.yacc.c: %.y 11 $(YACC) -o $@ -d $< 12 13 %.lex.c: %.l 14 $(LEX) -o $@ $< 15 16 all : bpf_jit_disasm bpf_dbg bpf_asm 17 18 bpf_jit_disasm : CFLAGS += -DPACKAGE='bpf_jit_disasm' 19 bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl 20 bpf_jit_disasm : bpf_jit_disasm.o 21 22 bpf_dbg : LDLIBS = -lreadline 23 bpf_dbg : bpf_dbg.o 24 25 bpf_asm : LDLIBS = 26 bpf_asm : bpf_asm.o bpf_exp.yacc.o bpf_exp.lex.o 27 bpf_exp.lex.o : bpf_exp.yacc.c 28 29 clean : 30 rm -rf *.o bpf_jit_disasm bpf_dbg bpf_asm bpf_exp.yacc.* bpf_exp.lex.* 31 32 install : 33 install bpf_jit_disasm $(prefix)/bin/bpf_jit_disasm 34 install bpf_dbg $(prefix)/bin/bpf_dbg 35 install bpf_asm $(prefix)/bin/bpf_asm
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.