haproxy/contrib/hpack/Makefile
Willy Tarreau 841bc7d471 CONTRIB: hpack: add a compressed stream generator for the encoder
This generates the tables and indexes which will be used by the HPACK
encoder. The headers are sorted by length, then by statistical frequency,
then by direction (preference for responses), then by name, then by index.
The purpose is to speed up their lookup.
2018-12-11 09:06:46 +01:00

10 lines
170 B
Makefile

CFLAGS = -O2 -Wall -g -I../../include -I../../ebtree -fwrapv -fno-strict-aliasing
OBJS = gen-rht gen-enc decode
all: $(OBJS)
%: %.c
clean:
-rm -vf $(OBJS) *.o *.a *~