mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-15 08:37:49 -05:00
This decoder takes a series of hex codes on stdin using one line per HEADERS frame and shows the decoded headers.
9 lines
162 B
Makefile
9 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 *~
|