| INCLUDE = -I../../include |
| # note: it is recommended to also add -fomit-frame-pointer on i386 |
| # most recent glibc provide platform-specific optimizations that make |
| # memchr faster than the generic C implementation (eg: SSE and prefetch |
| # on x86_64). Try with an without. In general, on x86_64 it's better to |
| # use memchr using the define below. |
| $(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(SRC)/ebtree.c $(SRC)/eb32tree.c $(SRC)/eb64tree.c $(SRC)/ebmbtree.c $(SRC)/ebsttree.c $(SRC)/ebistree.c $(SRC)/ebimtree.c $^ |