mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 22:15:14 +00:00
074ebcde29
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/
12 lines
177 B
Makefile
12 lines
177 B
Makefile
CC = gcc
|
|
OPTIMIZE = -O2 -g
|
|
DEFINE =
|
|
INCLUDE =
|
|
OBJS = tcploop
|
|
|
|
tcploop: tcploop.c
|
|
$(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
|
|
|
|
clean:
|
|
rm -f $(OBJS) *.[oas] *~
|