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
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 debug.o
13 OBJS += lib/flist_sort.o
19 OBJS += crc/crc32c-intel.o
27 OBJS += engines/libaio.o
28 OBJS += engines/mmap.o
29 OBJS += engines/posixaio.o
31 OBJS += engines/splice.o
32 OBJS += engines/sync.o
33 OBJS += engines/null.o
35 OBJS += engines/syslet-rw.o
36 OBJS += engines/guasi.o
38 OBJS += profiles/tiobench.o
40 ifneq ($(findstring $(MAKEFLAGS),s),s)
42 QUIET_CC = @echo ' ' CC $@;
43 QUIET_DEP = @echo ' ' DEP $@;
49 bindir = $(prefix)/bin
50 mandir = $(prefix)/man
53 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
55 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
58 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
62 all: depend $(PROGS) $(SCRIPTS)
65 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
70 install: $(PROGS) $(SCRIPTS)
71 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
72 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
73 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
74 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
75 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
77 ifneq ($(wildcard .depend),)