XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
312 B
18 lines
312 B
#! /usr/bin/make -f |
|
|
|
EXES=mem_test |
|
OBJS=mem.o |
|
CC=gcc |
|
CFLAGS=-g -O0 -I. -D TEST -Wall |
|
TEST=valgrind |
|
|
|
all: mem |
|
|
|
mem_test: xcache/xc_mem.c xcache/xc_mem.h util/xc_trace.c util/xc_trace.h |
|
$(CC) $(CFLAGS) -o mem_test xcache/xc_mem.c util/xc_trace.c |
|
|
|
mem: mem_test |
|
$(TEST) ./mem_test |
|
|
|
clean: |
|
rm -f $(OBJS) $(EXES)
|
|
|