Add support for giving multiple --section options
[fio.git] / Makefile
... / ...
CommitLineData
1CC = gcc
2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4 $(DEBUGFLAGS)
5OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm
8PROGS = fio
9SCRIPTS = fio_generate_plots
10UNAME := $(shell uname)
11
12SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
13 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
57OBJS = $(SOURCE:.c=.o)
58
59ifneq ($(findstring $(MAKEFLAGS),s),s)
60ifndef V
61 QUIET_CC = @echo ' ' CC $@;
62 QUIET_DEP = @echo ' ' DEP $@;
63endif
64endif
65
66INSTALL = install
67prefix = /usr/local
68bindir = $(prefix)/bin
69mandir = $(prefix)/man
70
71.c.o:
72 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
73
74fio: $(OBJS)
75 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
76
77depend:
78 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
79
80$(PROGS): depend
81
82all: depend $(PROGS) $(SCRIPTS)
83
84clean:
85 -rm -f .depend $(OBJS) $(PROGS) core.* core
86
87cscope:
88 @cscope -b -R
89
90install: $(PROGS) $(SCRIPTS)
91 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
92 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
93 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
94 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
95 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
96
97ifneq ($(wildcard .depend),)
98include .depend
99endif