mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-21 17:39:39 -04:00
The following directories were moved from contrib/ to dev/ to make their use case a bit clearer. In short, only developers are expected to ever go there. The makefile was updated to build and clean from these ones. base64/ flags/ hpack/ plug_qdisc/ poll/ tcploop/ trace/
9 lines
155 B
Makefile
9 lines
155 B
Makefile
CFLAGS = -O2 -Wall -g -I../../include -fwrapv -fno-strict-aliasing
|
|
OBJS = gen-rht gen-enc decode
|
|
|
|
all: $(OBJS)
|
|
|
|
%: %.c
|
|
|
|
clean:
|
|
-rm -vf $(OBJS) *.o *.a *~
|