Add some comments around the terse output
[fio.git] / Makefile
... / ...
CommitLineData
1CC = gcc
2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3OPTFLAGS= -O2 -g $(EXTFLAGS)
4CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -fno-omit-frame-pointer -rdynamic
5PROGS = fio
6SCRIPTS = fio_generate_plots
7OBJS = 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
12OBJS += lib/rand.o
13OBJS += lib/flist_sort.o
14OBJS += lib/num2str.o
15
16OBJS += crc/crc7.o
17OBJS += crc/crc16.o
18OBJS += crc/crc32.o
19OBJS += crc/crc32c.o
20OBJS += crc/crc32c-intel.o
21OBJS += crc/crc64.o
22OBJS += crc/sha1.o
23OBJS += crc/sha256.o
24OBJS += crc/sha512.o
25OBJS += crc/md5.o
26
27OBJS += engines/cpu.o
28OBJS += engines/libaio.o
29OBJS += engines/mmap.o
30OBJS += engines/posixaio.o
31OBJS += engines/sg.o
32OBJS += engines/splice.o
33OBJS += engines/sync.o
34OBJS += engines/null.o
35OBJS += engines/net.o
36OBJS += engines/syslet-rw.o
37OBJS += engines/guasi.o
38OBJS += engines/binject.o
39
40OBJS += profiles/tiobench.o
41
42ifneq ($(findstring $(MAKEFLAGS),s),s)
43ifndef V
44 QUIET_CC = @echo ' ' CC $@;
45 QUIET_DEP = @echo ' ' DEP $@;
46endif
47endif
48
49INSTALL = install
50prefix = /usr/local
51bindir = $(prefix)/bin
52mandir = $(prefix)/man
53
54%.o: %.c
55 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
56fio: $(OBJS)
57 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
58
59depend:
60 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
61
62$(PROGS): depend
63
64all: depend $(PROGS) $(SCRIPTS)
65
66clean:
67 -rm -f .depend $(OBJS) $(PROGS) core.* core
68
69cscope:
70 @cscope -b -R
71
72install: $(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
79ifneq ($(wildcard .depend),)
80include .depend
81endif