blob: c9a1422ba1a8a723aa24bfd06ff6a448803d8ce0 [file] [log] [blame]
Jens Axboe32cd46a2006-06-07 13:40:40 +02001CC = gcc
Jens Axboe5f421002008-06-02 16:15:59 +02002DEBUGFLAGS = -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) -rdynamic
Jens Axboe32cd46a2006-06-07 13:40:40 +02005PROGS = fio
6SCRIPTS = fio_generate_plots
Jens Axboea432da12007-07-30 12:29:37 +02007OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
Jens Axboeff2e2232008-06-13 08:38:35 +02008 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
Jens Axboe8e8af3c2010-03-19 16:43:22 +01009 rbtree.o smalloc.o filehash.o helpers.o profile.o debug.o
Jens Axboec11883f2006-11-23 15:11:53 +010010
Jens Axboe1fbbf722010-03-25 23:03:18 +010011OBJS += lib/rand.o
Jens Axboed29cd592010-05-04 13:06:47 +020012OBJS += lib/flist_sort.o
Jens Axboe1ec3d692010-09-16 09:35:34 +020013OBJS += lib/num2str.o
Jens Axboe1fbbf722010-03-25 23:03:18 +010014
Jens Axboea432da12007-07-30 12:29:37 +020015OBJS += crc/crc7.o
16OBJS += crc/crc16.o
17OBJS += crc/crc32.o
Jens Axboea6cee432008-12-22 11:29:50 +010018OBJS += crc/crc32c.o
19OBJS += crc/crc32c-intel.o
Jens Axboea432da12007-07-30 12:29:37 +020020OBJS += crc/crc64.o
Jens Axboe7c353ce2009-08-09 22:40:33 +020021OBJS += crc/sha1.o
Jens Axboea432da12007-07-30 12:29:37 +020022OBJS += crc/sha256.o
23OBJS += crc/sha512.o
24OBJS += crc/md5.o
25
Jens Axboef8fe35e2007-02-06 13:29:55 +010026OBJS += engines/cpu.o
27OBJS += engines/mmap.o
28OBJS += engines/posixaio.o
29OBJS += engines/sync.o
30OBJS += engines/null.o
Jens Axboeed92ac02007-02-06 14:43:52 +010031OBJS += engines/net.o
Jens Axboe5c4e1db2006-06-07 14:17:08 +020032
Jens Axboe5f421002008-06-02 16:15:59 +020033SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
34 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
35 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
Bruce Cran59e733f2010-12-16 08:52:42 +010036 engines/posixaio.c engines/sync.c engines/null.c engines/net.c
Jens Axboe5f421002008-06-02 16:15:59 +020037
38ifneq ($(findstring $(MAKEFLAGS),s),s)
39ifndef V
40 QUIET_CC = @echo ' ' CC $@;
41 QUIET_DEP = @echo ' ' DEP $@;
42endif
43endif
44
Jens Axboe32cd46a2006-06-07 13:40:40 +020045INSTALL = install
46prefix = /usr/local
47bindir = $(prefix)/bin
Jens Axboeb52ae0a2008-05-30 22:23:53 +020048mandir = $(prefix)/man
49
Jens Axboe5f421002008-06-02 16:15:59 +020050%.o: %.c
51 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
Jens Axboeb52ae0a2008-05-30 22:23:53 +020052fio: $(OBJS)
Bruce Cranc94bbe52010-12-16 11:03:22 +010053 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -pthread -lm -lrt
Jens Axboe5f421002008-06-02 16:15:59 +020054
55depend:
56 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
57
58$(PROGS): depend
Jens Axboeb52ae0a2008-05-30 22:23:53 +020059
60all: depend $(PROGS) $(SCRIPTS)
61
62clean:
Jens Axboe6492b1e2008-06-02 15:57:45 +020063 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
Jens Axboeb52ae0a2008-05-30 22:23:53 +020064
Jens Axboeb52ae0a2008-05-30 22:23:53 +020065cscope:
66 @cscope -b
Jens Axboe32cd46a2006-06-07 13:40:40 +020067
68install: $(PROGS) $(SCRIPTS)
69 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
70 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
Jens Axboe5f421002008-06-02 16:15:59 +020071 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
72 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
Jens Axboeccd4f412009-05-20 11:36:39 +020073 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
Jens Axboe5f421002008-06-02 16:15:59 +020074
75ifneq ($(wildcard .depend),)
76include .depend
77endif