Update email addresses
[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 \
bf84eacb 10 cgroup.o profile.o debug.o
eef6eea1 11
1fbbf72e 12OBJS += lib/rand.o
d29cd59a 13OBJS += lib/flist_sort.o
1fbbf72e 14
eef6eea1
JA
15OBJS += crc/crc7.o
16OBJS += crc/crc16.o
17OBJS += crc/crc32.o
bac39e0e 18OBJS += crc/crc32c.o
3845591f 19OBJS += crc/crc32c-intel.o
eef6eea1 20OBJS += crc/crc64.o
7c353ceb 21OBJS += crc/sha1.o
eef6eea1
JA
22OBJS += crc/sha256.o
23OBJS += crc/sha512.o
24OBJS += crc/md5.o
ebac4655 25
f8fe35e8
JA
26OBJS += engines/cpu.o
27OBJS += engines/libaio.o
28OBJS += engines/mmap.o
29OBJS += engines/posixaio.o
30OBJS += engines/sg.o
31OBJS += engines/splice.o
32OBJS += engines/sync.o
33OBJS += engines/null.o
ed92ac0c 34OBJS += engines/net.o
a4f4fdd7 35OBJS += engines/syslet-rw.o
609342ff 36OBJS += engines/guasi.o
5f350952 37
79d16311
JA
38OBJS += profiles/tiobench.o
39
4c3ecec4
JA
40ifneq ($(findstring $(MAKEFLAGS),s),s)
41ifndef V
42 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 43 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
44endif
45endif
46
c1d5725e
JA
47INSTALL = install
48prefix = /usr/local
49bindir = $(prefix)/bin
d60e92d1 50mandir = $(prefix)/man
c1d5725e 51
4c3ecec4
JA
52%.o: %.c
53 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
2f9ade3c 54fio: $(OBJS)
4c3ecec4
JA
55 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
56
0b2d6a7a 57depend:
091708da 58 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
0b2d6a7a 59
06fecb4e
JA
60$(PROGS): depend
61
62all: depend $(PROGS) $(SCRIPTS)
ebac4655
JA
63
64clean:
6492b1e5 65 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
ebac4655 66
592ef98a
JA
67cscope:
68 @cscope -b
69
ebac4655
JA
70install: $(PROGS) $(SCRIPTS)
71 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
72 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
73 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
74 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 75 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 76
06fecb4e
JA
77ifneq ($(wildcard .depend),)
78include .depend
79endif