mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 01:41:49 -04:00
A new fgets implementation saves about 25-50% of the time spent parsing the logs. Percentile calculation has been added for timers using -pct.
13 lines
322 B
Makefile
13 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)
|