Add __weak sync_file_range()
[fio.git] / Makefile
1 CC      = gcc
2 DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3 OPTFLAGS= -O2 -g $(EXTFLAGS)
4 CFLAGS  = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -fno-omit-frame-pointer -rdynamic
5 PROGS   = fio
6 SCRIPTS = fio_generate_plots
7 OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
8         eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
9         rbtree.o diskutil.o fifo.o blktrace.o smalloc.o filehash.o helpers.o \
10         cgroup.o profile.o
11
12 OBJS += crc/crc7.o
13 OBJS += crc/crc16.o
14 OBJS += crc/crc32.o
15 OBJS += crc/crc32c.o
16 OBJS += crc/crc32c-intel.o
17 OBJS += crc/crc64.o
18 OBJS += crc/sha1.o
19 OBJS += crc/sha256.o
20 OBJS += crc/sha512.o
21 OBJS += crc/md5.o
22
23 OBJS += engines/cpu.o
24 OBJS += engines/libaio.o
25 OBJS += engines/mmap.o
26 OBJS += engines/posixaio.o
27 OBJS += engines/sg.o
28 OBJS += engines/splice.o
29 OBJS += engines/sync.o
30 OBJS += engines/null.o
31 OBJS += engines/net.o
32 OBJS += engines/syslet-rw.o
33 OBJS += engines/guasi.o
34
35 OBJS += profiles/tiobench.o
36
37 ifneq ($(findstring $(MAKEFLAGS),s),s)
38 ifndef V
39         QUIET_CC        = @echo '   ' CC $@;
40         QUIET_DEP       = @echo '   ' DEP $@;
41 endif
42 endif
43
44 INSTALL = install
45 prefix = /usr/local
46 bindir = $(prefix)/bin
47 mandir = $(prefix)/man
48
49 %.o: %.c
50         $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
51 fio: $(OBJS)
52         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
53
54 depend:
55         $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
56
57 $(PROGS): depend
58
59 all: depend $(PROGS) $(SCRIPTS)
60
61 clean:
62         -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
63
64 cscope:
65         @cscope -b
66
67 install: $(PROGS) $(SCRIPTS)
68         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
69         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
70         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
71         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
72         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
73
74 ifneq ($(wildcard .depend),)
75 include .depend
76 endif