haproxy/contrib/halog/Makefile
Willy Tarreau 72c285345a [CONTRIB] halog: fast log parser for haproxy
halog can search errors, count lines, sort by accept date, look for
traffic holes and large connection counts at output graph plots of
timers.
2009-03-09 00:34:11 +01:00

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)