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