mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 22:15:14 +00:00
4576424174
This decoder takes a series of hex codes on stdin using one line per HEADERS frame and shows the decoded headers.
10 lines
162 B
Makefile
10 lines
162 B
Makefile
CFLAGS = -O2 -Wall -g -I../../include -I../../ebtree -fwrapv -fno-strict-aliasing
|
|
OBJS = gen-rht decode
|
|
|
|
all: $(OBJS)
|
|
|
|
%: %.c
|
|
|
|
clean:
|
|
-rm -vf $(OBJS) *.o *.a *~
|