haproxy/contrib/hpack/Makefile
Willy Tarreau 4576424174 CONTRIB: hpack: add an hpack decoder
This decoder takes a series of hex codes on stdin using one line
per HEADERS frame and shows the decoded headers.
2017-12-30 17:43:28 +01:00

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 *~