
#
# include -DNO_FORK below to run only a single client w/o forking
# -DUSE_MACH_VM_INHERIT is required for Mac OS X Server and possibly
# works under NEXTSTEP and OPENSTEP

CFLAGS = -O6 -Wall -DUSE_MMAP=0 -DUSE_RENAME=0 -DWRITE_SIZE=4096 -DUSE_MACH_VM_INHERIT

OBJS = util.o io.o dbench.o child.o

dbench: $(OBJS)
	$(CC) -o dbench $(OBJS) 

clean:
	rm -f *.o *~ dbench

proto:
	cat *.c | awk -f mkproto.awk > proto.h
