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