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