blob: 9d3945b39564de873d65f0939c79faaf1d5fbe2b [file] [log] [blame]
Jens Axboe31dc09d2012-08-14 14:34:32 +02001CC ?= gcc
Jens Axboe79e48f72008-02-01 20:37:09 +01002DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
Bruce Cran9b836562011-01-08 19:49:54 +01003CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4 $(DEBUGFLAGS)
Jens Axboeb7eec502011-10-07 13:31:23 +02005OPTFLAGS= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS)
Bruce Crand015e392011-01-28 08:39:09 +01006CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
Yufei Renb6cf38f2011-08-02 12:15:30 +02007LIBS = -lm $(EXTLIBS)
Jens Axboeebac4652005-12-08 15:25:21 +01008PROGS = fio
9SCRIPTS = fio_generate_plots
Bruce Crand015e392011-01-28 08:39:09 +010010UNAME := $(shell uname)
11
Bruce Cran93bcfd22012-02-20 20:18:19 +010012SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
Bruce Crand015e392011-01-28 08:39:09 +010013 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
14 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
Jens Axboec7c6cb42011-10-13 14:12:40 +020015 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
Jens Axboed48a9792011-07-09 08:54:26 +020016 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
Dan Ehrenberg9e684a42012-02-20 11:05:14 +010017 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c
Bruce Crand015e392011-01-28 08:39:09 +010018
19ifeq ($(UNAME), Linux)
20 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
21 engines/libaio.c engines/posixaio.c engines/sg.c \
22 engines/splice.c engines/syslet-rw.c engines/guasi.c \
ren yufei21b8aee2011-08-01 10:01:57 +020023 engines/binject.c engines/rdma.c profiles/tiobench.c
Bruce Crand015e392011-01-28 08:39:09 +010024 LIBS += -lpthread -ldl -lrt -laio
Jens Axboe213a01b2011-10-07 13:24:16 +020025 LDFLAGS += -rdynamic
Bruce Crand015e392011-01-28 08:39:09 +010026endif
27ifeq ($(UNAME), SunOS)
Jens Axboe33c142b2011-04-25 20:49:45 +020028 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
Jens Axboed48a9792011-07-09 08:54:26 +020029 engines/solarisaio.c
Bruce Crand015e392011-01-28 08:39:09 +010030 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
31 CPPFLAGS += -D__EXTENSIONS__
32endif
33ifeq ($(UNAME), FreeBSD)
Jens Axboed48a9792011-07-09 08:54:26 +020034 SOURCE += helpers.c engines/posixaio.c
Bruce Crand015e392011-01-28 08:39:09 +010035 LIBS += -lpthread -lrt
Jens Axboe213a01b2011-10-07 13:24:16 +020036 LDFLAGS += -rdynamic
Bruce Crand015e392011-01-28 08:39:09 +010037endif
38ifeq ($(UNAME), NetBSD)
Jens Axboed48a9792011-07-09 08:54:26 +020039 SOURCE += helpers.c engines/posixaio.c
Bruce Crand015e392011-01-28 08:39:09 +010040 LIBS += -lpthread -lrt
Jens Axboe213a01b2011-10-07 13:24:16 +020041 LDFLAGS += -rdynamic
Bruce Crand015e392011-01-28 08:39:09 +010042endif
43ifeq ($(UNAME), AIX)
Jens Axboed48a9792011-07-09 08:54:26 +020044 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
Bruce Crand015e392011-01-28 08:39:09 +010045 LIBS += -lpthread -ldl -lrt
Bruce Crand015e392011-01-28 08:39:09 +010046 CPPFLAGS += -D_LARGE_FILES -D__ppc__
Michael Perzl48b35be2011-07-13 20:28:07 +020047 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
Bruce Crand015e392011-01-28 08:39:09 +010048endif
Jens Axboec00a2282011-07-08 20:56:06 +020049ifeq ($(UNAME), HP-UX)
Jens Axboed48a9792011-07-09 08:54:26 +020050 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
Jens Axboeb5ffb752011-07-09 13:28:19 +020051 LIBS += -lpthread -ldl -lrt
Jens Axboed48a9792011-07-09 08:54:26 +020052 CFLAGS += -D_LARGEFILE64_SOURCE
Jens Axboec00a2282011-07-08 20:56:06 +020053endif
Bruce Crand015e392011-01-28 08:39:09 +010054ifeq ($(UNAME), Darwin)
Jens Axboed48a9792011-07-09 08:54:26 +020055 SOURCE += helpers.c engines/posixaio.c
Bruce Crand015e392011-01-28 08:39:09 +010056 LIBS += -lpthread -ldl
57endif
58ifneq (,$(findstring CYGWIN,$(UNAME)))
Bruce Cran93bcfd22012-02-20 20:18:19 +010059 SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
60 SOURCE += engines/windowsaio.c os/windows/posix.c
61 LIBS += -lpthread -lpsapi -lws2_32
62 CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
63 CC = x86_64-w64-mingw32-gcc
Bruce Crand3987942012-06-08 08:12:20 +020064 #CC = i686-w64-mingw32-gcc
Bruce Crand015e392011-01-28 08:39:09 +010065endif
66
Bruce Cran9b836562011-01-08 19:49:54 +010067OBJS = $(SOURCE:.c=.o)
Jens Axboe79d16312010-03-04 12:43:20 +010068
Jens Axboe61f78f32011-10-05 10:25:54 +020069T_SMALLOC_OBJS = t/stest.o
70T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
71T_SMALLOC_PROGS = t/stest
72
73T_IEEE_OBJS = t/ieee754.o
74T_IEEE_OBJS += ieee754.o
75T_IEEE_PROGS = t/ieee754
76
77T_OBJS = $(T_SMALLOC_OBJS)
78T_OBJS += $(T_IEEE_OBJS)
Jens Axboe34272072011-08-16 10:01:03 +020079
Jens Axboe4c3ecec2008-03-01 16:20:13 +010080ifneq ($(findstring $(MAKEFLAGS),s),s)
81ifndef V
82 QUIET_CC = @echo ' ' CC $@;
Jens Axboe0b2d6a72008-03-03 12:20:26 +010083 QUIET_DEP = @echo ' ' DEP $@;
Jens Axboe4c3ecec2008-03-01 16:20:13 +010084endif
85endif
86
Jens Axboec1d57252006-10-09 19:56:04 +020087INSTALL = install
88prefix = /usr/local
89bindir = $(prefix)/bin
Jens Axboebcdf7c52012-02-08 14:19:27 +010090
91ifeq ($(UNAME), Darwin)
92mandir = /usr/share/man
93else
Aaron Carrolld60e92d2007-09-17 10:32:59 +020094mandir = $(prefix)/man
Jens Axboebcdf7c52012-02-08 14:19:27 +010095endif
Jens Axboec1d57252006-10-09 19:56:04 +020096
Jens Axboe692a5d22012-04-11 22:07:07 +020097all: .depend $(PROGS) $(SCRIPTS) FORCE
Michael Zappef84622e2011-06-01 20:15:18 +020098
Jens Axboe692a5d22012-04-11 22:07:07 +020099.PHONY: all install clean
100.PHONY: FORCE cscope
101
102FIO-VERSION-FILE: FORCE
Bruce Cran84306c12012-04-16 19:33:03 +0200103 @$(SHELL) ./FIO-VERSION-GEN
Jens Axboe692a5d22012-04-11 22:07:07 +0200104-include FIO-VERSION-FILE
105
106CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
107
108.c.o: .depend FORCE
Bruce Cran9b836562011-01-08 19:49:54 +0100109 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
Diego Elio Pettenòe52947d2011-03-21 20:13:53 +0100110
Jens Axboea6204b62012-04-13 14:06:08 +0200111init.o: FIO-VERSION-FILE
112 $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
113
Jens Axboe61f78f32011-10-05 10:25:54 +0200114t/stest: $(T_SMALLOC_OBJS)
115 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
116
117t/ieee754: $(T_IEEE_OBJS)
118 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
Jens Axboefbc27922011-08-16 09:56:27 +0200119
Jens Axboe2f9ade32006-10-20 11:25:52 +0200120fio: $(OBJS)
Michael Perzl48b35be2011-07-13 20:28:07 +0200121 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
Jens Axboe4c3ecec2008-03-01 16:20:13 +0100122
Michael Zappef84622e2011-06-01 20:15:18 +0200123.depend: $(SOURCE)
Bruce Cran9b836562011-01-08 19:49:54 +0100124 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
Jens Axboe0b2d6a72008-03-03 12:20:26 +0100125
Jens Axboe8541f322012-04-11 22:24:19 +0200126$(PROGS): .depend
Jens Axboeebac4652005-12-08 15:25:21 +0100127
Jens Axboe692a5d22012-04-11 22:07:07 +0200128clean: FORCE
129 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
Jens Axboeebac4652005-12-08 15:25:21 +0100130
Jens Axboe592ef982006-06-06 20:58:57 +0200131cscope:
Jens Axboe366badd2010-07-19 16:18:35 -0600132 @cscope -b -R
Jens Axboe592ef982006-06-06 20:58:57 +0200133
Jens Axboe692a5d22012-04-11 22:07:07 +0200134install: $(PROGS) $(SCRIPTS) FORCE
Jens Axboe513ba3f2011-04-29 08:24:10 +0200135 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
Jens Axboeebac4652005-12-08 15:25:21 +0100136 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
Aaron Carrolld60e92d2007-09-17 10:32:59 +0200137 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
138 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
Jens Axboeccd4f412009-05-20 11:36:39 +0200139 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
Jens Axboeebac4652005-12-08 15:25:21 +0100140
Jens Axboe06fecb42008-03-03 12:22:19 +0100141ifneq ($(wildcard .depend),)
142include .depend
143endif