blob: 911cae63559994138bfcf6efa4aa4443f53b8341 [file] [log] [blame]
Willy Tarreau72c28532009-01-22 18:56:50 +01001INCLUDE = -I../../include
2OPTIMIZE = -O3 -mtune=pentium-m
3CC = gcc
4
5OBJS = halog
6
7halog: halog.c
8 $(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
9
10clean:
11 rm -vf $(OBJS)