mutex: only regard less-than-zero return as error
[fio.git] / Makefile.FreeBSD
CommitLineData
32cd46a0 1CC = gcc
b52ae0af 2CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG
32cd46a0
JA
3PROGS = fio
4SCRIPTS = fio_generate_plots
a432da1d
JA
5OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
6 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
cbf69f0d 7 rbtree.o fifo.o smalloc.o filehash.o
c11883f7 8
a432da1d
JA
9OBJS += crc/crc7.o
10OBJS += crc/crc16.o
11OBJS += crc/crc32.o
12OBJS += crc/crc64.o
13OBJS += crc/sha256.o
14OBJS += crc/sha512.o
15OBJS += crc/md5.o
16
f8fe35e8
JA
17OBJS += engines/cpu.o
18OBJS += engines/mmap.o
19OBJS += engines/posixaio.o
20OBJS += engines/sync.o
21OBJS += engines/null.o
ed92ac0c 22OBJS += engines/net.o
5c4e1dbc 23
b52ae0af
JA
24INSTALL = install
25prefix = /usr/local
26bindir = $(prefix)/bin
27mandir = $(prefix)/man
32cd46a0 28
b52ae0af
JA
29%.o: %.c
30 $(CC) -o $*.o -c $(CFLAGS) $<
c11883f7 31fio: $(OBJS)
871c0fc7 32 $(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread -lm -ldl -lrt
32cd46a0 33
b52ae0af
JA
34all: depend $(PROGS) $(SCRIPTS)
35
32cd46a0 36clean:
b52ae0af 37 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core
32cd46a0
JA
38
39depend:
b52ae0af 40 @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
32cd46a0
JA
41
42cscope:
43 @cscope -b
44
32cd46a0
JA
45install: $(PROGS) $(SCRIPTS)
46 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
47 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)