Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[linux-2.6-block.git] / tools / net / Makefile
CommitLineData
e306e2c1
DB
1prefix = /usr
2
3CC = gcc
3f356385
DB
4LEX = flex
5YACC = bison
e306e2c1 6
d7475de5
KM
7CFLAGS += -Wall -O2
8CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
9
3f356385
DB
10%.yacc.c: %.y
11 $(YACC) -o $@ -d $<
12
13%.lex.c: %.l
14 $(LEX) -o $@ $<
15
16all : bpf_jit_disasm bpf_dbg bpf_asm
e306e2c1 17
d7475de5 18bpf_jit_disasm : CFLAGS += -DPACKAGE='bpf_jit_disasm'
e306e2c1
DB
19bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl
20bpf_jit_disasm : bpf_jit_disasm.o
21
fd981e3c
DB
22bpf_dbg : LDLIBS = -lreadline
23bpf_dbg : bpf_dbg.o
24
3f356385
DB
25bpf_asm : LDLIBS =
26bpf_asm : bpf_asm.o bpf_exp.yacc.o bpf_exp.lex.o
27bpf_exp.lex.o : bpf_exp.yacc.c
28
e306e2c1 29clean :
3f356385 30 rm -rf *.o bpf_jit_disasm bpf_dbg bpf_asm bpf_exp.yacc.* bpf_exp.lex.*
e306e2c1
DB
31
32install :
33 install bpf_jit_disasm $(prefix)/bin/bpf_jit_disasm
fd981e3c 34 install bpf_dbg $(prefix)/bin/bpf_dbg
3f356385 35 install bpf_asm $(prefix)/bin/bpf_asm