mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-14 15:34:35 +00:00
214c203c00
A new fgets implementation saves about 25-50% of the time spent parsing the logs. Percentile calculation has been added for timers using -pct.
14 lines
322 B
Makefile
14 lines
322 B
Makefile
INCLUDE = -I../../include
|
|
OPTIMIZE = -O3 -mtune=pentium-m
|
|
|
|
OBJS = halog halog64
|
|
|
|
halog: halog.c fgets2.c
|
|
$(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
|
|
|
|
halog64: halog.c fgets2-64.c
|
|
$(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
|
|
|
|
clean:
|
|
rm -vf $(OBJS)
|