mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-23 14:02:56 +00:00
72c285345a
halog can search errors, count lines, sort by accept date, look for traffic holes and large connection counts at output graph plots of timers.
12 lines
211 B
Makefile
12 lines
211 B
Makefile
INCLUDE = -I../../include
|
|
OPTIMIZE = -O3 -mtune=pentium-m
|
|
CC = gcc
|
|
|
|
OBJS = halog
|
|
|
|
halog: halog.c
|
|
$(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
|
|
|
|
clean:
|
|
rm -vf $(OBJS)
|