blob: 1d815624c44228a1cedcfb1c28ccd8ddd4dff4aa [file] [log] [blame]
Jens Axboe12cbb462007-12-10 20:24:44 +01001CC = 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)
Bruce Cranc2019d32011-01-10 19:34:20 +01005OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
Bruce Crand015e392011-01-28 08:39:09 +01006CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm
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 Cran9b836562011-01-08 19:49:54 +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 \
15 lib/num2str.c $(wildcard crc/*.c) engines/cpu.c \
16 engines/mmap.c engines/sync.c engines/null.c engines/net.c
17
18ifeq ($(UNAME), Linux)
19 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
20 engines/libaio.c engines/posixaio.c engines/sg.c \
21 engines/splice.c engines/syslet-rw.c engines/guasi.c \
22 engines/binject.c profiles/tiobench.c
23 LIBS += -lpthread -ldl -lrt -laio
24 CFLAGS += -rdynamic
25endif
26ifeq ($(UNAME), SunOS)
27 SOURCE += fifo.c lib/strsep.c helpers.c solaris.c engines/posixaio.c \
28 engines/solarisaio.c
29 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
30 CPPFLAGS += -D__EXTENSIONS__
31endif
32ifeq ($(UNAME), FreeBSD)
33 SOURCE += helpers.c engines/posixaio.c
34 LIBS += -lpthread -lrt
35 CFLAGS += -rdynamic
36endif
37ifeq ($(UNAME), NetBSD)
38 SOURCE += helpers.c engines/posixaio.c
39 LIBS += -lpthread -lrt
40 CFLAGS += -rdynamic
41endif
42ifeq ($(UNAME), AIX)
43 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
44 LIBS += -lpthread -ldl -lrt
45 CFLAGS += -rdynamic
46 CPPFLAGS += -D_LARGE_FILES -D__ppc__
47endif
48ifeq ($(UNAME), Darwin)
49 SOURCE += helpers.c engines/posixaio.c
50 LIBS += -lpthread -ldl
51endif
52ifneq (,$(findstring CYGWIN,$(UNAME)))
53 SOURCE += engines/windowsaio.c
54 LIBS += -lpthread -lrt
55endif
56
Bruce Cran9b836562011-01-08 19:49:54 +010057OBJS = $(SOURCE:.c=.o)
Jens Axboe79d16312010-03-04 12:43:20 +010058
Jens Axboe4c3ecec2008-03-01 16:20:13 +010059ifneq ($(findstring $(MAKEFLAGS),s),s)
60ifndef V
61 QUIET_CC = @echo ' ' CC $@;
Jens Axboe0b2d6a72008-03-03 12:20:26 +010062 QUIET_DEP = @echo ' ' DEP $@;
Jens Axboe4c3ecec2008-03-01 16:20:13 +010063endif
64endif
65
Jens Axboec1d57252006-10-09 19:56:04 +020066INSTALL = install
67prefix = /usr/local
68bindir = $(prefix)/bin
Aaron Carrolld60e92d2007-09-17 10:32:59 +020069mandir = $(prefix)/man
Jens Axboec1d57252006-10-09 19:56:04 +020070
Bruce Cran9b836562011-01-08 19:49:54 +010071.c.o:
72 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
Diego Elio Pettenòe52947d2011-03-21 20:13:53 +010073
Jens Axboe2f9ade32006-10-20 11:25:52 +020074fio: $(OBJS)
Diego Elio Pettenòe52947d2011-03-21 20:13:53 +010075 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
Jens Axboe4c3ecec2008-03-01 16:20:13 +010076
Jens Axboe0b2d6a72008-03-03 12:20:26 +010077depend:
Bruce Cran9b836562011-01-08 19:49:54 +010078 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
Jens Axboe0b2d6a72008-03-03 12:20:26 +010079
Jens Axboe06fecb42008-03-03 12:22:19 +010080$(PROGS): depend
81
82all: depend $(PROGS) $(SCRIPTS)
Jens Axboeebac4652005-12-08 15:25:21 +010083
84clean:
Jens Axboe0d29de82010-09-01 13:54:15 +020085 -rm -f .depend $(OBJS) $(PROGS) core.* core
Jens Axboeebac4652005-12-08 15:25:21 +010086
Jens Axboe592ef982006-06-06 20:58:57 +020087cscope:
Jens Axboe366badd2010-07-19 16:18:35 -060088 @cscope -b -R
Jens Axboe592ef982006-06-06 20:58:57 +020089
Jens Axboeebac4652005-12-08 15:25:21 +010090install: $(PROGS) $(SCRIPTS)
91 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
92 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
Aaron Carrolld60e92d2007-09-17 10:32:59 +020093 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
94 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
Jens Axboeccd4f412009-05-20 11:36:39 +020095 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
Jens Axboeebac4652005-12-08 15:25:21 +010096
Jens Axboe06fecb42008-03-03 12:22:19 +010097ifneq ($(wildcard .depend),)
98include .depend
99endif