13baee837bf4d0ff06b07038f4c88fded5f5ab2a
[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 debug.o trim.o
11
12 OBJS += lib/rand.o
13 OBJS += lib/flist_sort.o
14
15 OBJS += crc/crc7.o
16 OBJS += crc/crc16.o
17 OBJS += crc/crc32.o
18 OBJS += crc/crc32c.o
19 OBJS += crc/crc32c-intel.o
20 OBJS += crc/crc64.o
21 OBJS += crc/sha1.o
22 OBJS += crc/sha256.o
23 OBJS += crc/sha512.o
24 OBJS += crc/md5.o
25
26 OBJS += engines/cpu.o
27 OBJS += engines/libaio.o
28 OBJS += engines/mmap.o
29 OBJS += engines/posixaio.o
30 OBJS += engines/sg.o
31 OBJS += engines/splice.o
32 OBJS += engines/sync.o
33 OBJS += engines/null.o
34 OBJS += engines/net.o
35 OBJS += engines/syslet-rw.o
36 OBJS += engines/guasi.o
37 OBJS += engines/binject.o
38
39 OBJS += profiles/tiobench.o
40
41 ifneq ($(findstring $(MAKEFLAGS),s),s)
42 ifndef V
43         QUIET_CC        = @echo '   ' CC $@;
44         QUIET_DEP       = @echo '   ' DEP $@;
45 endif
46 endif
47
48 INSTALL = install
49 prefix = /usr/local
50 bindir = $(prefix)/bin
51 mandir = $(prefix)/man
52
53 %.o: %.c
54         $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
55 fio: $(OBJS)
56         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
57
58 depend:
59         $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
60
61 $(PROGS): depend
62
63 all: depend $(PROGS) $(SCRIPTS)
64
65 clean:
66         -rm -f .depend $(OBJS) $(PROGS) core.* core
67
68 cscope:
69         @cscope -b -R
70
71 install: $(PROGS) $(SCRIPTS)
72         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
73         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
74         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
75         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
76         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
77
78 ifneq ($(wildcard .depend),)
79 include .depend
80 endif