Merge branch 'master' of ssh://brick.kernel.dk/data/git/fio
[fio.git] / Makefile
CommitLineData
12cbb469 1CC = gcc
79e48f72 2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
9b836561
BC
3CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4 $(DEBUGFLAGS)
b7eec504 5OPTFLAGS= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS)
d015e398 6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
b6cf38f0 7LIBS = -lm $(EXTLIBS)
ebac4655
JA
8PROGS = fio
9SCRIPTS = fio_generate_plots
d015e398
BC
10UNAME := $(shell uname)
11
93bcfd20 12SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
d015e398
BC
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 \
c7c6cb4c 15 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
d48a9799 16 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
9e684a49 17 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c
d015e398
BC
18
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 \
21b8aee8 23 engines/binject.c engines/rdma.c profiles/tiobench.c
d015e398 24 LIBS += -lpthread -ldl -lrt -laio
213a01b0 25 LDFLAGS += -rdynamic
d015e398
BC
26endif
27ifeq ($(UNAME), SunOS)
33c142be 28 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
d48a9799 29 engines/solarisaio.c
d015e398
BC
30 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
31 CPPFLAGS += -D__EXTENSIONS__
32endif
33ifeq ($(UNAME), FreeBSD)
d48a9799 34 SOURCE += helpers.c engines/posixaio.c
d015e398 35 LIBS += -lpthread -lrt
213a01b0 36 LDFLAGS += -rdynamic
d015e398
BC
37endif
38ifeq ($(UNAME), NetBSD)
d48a9799 39 SOURCE += helpers.c engines/posixaio.c
d015e398 40 LIBS += -lpthread -lrt
213a01b0 41 LDFLAGS += -rdynamic
d015e398
BC
42endif
43ifeq ($(UNAME), AIX)
d48a9799 44 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
d015e398 45 LIBS += -lpthread -ldl -lrt
d015e398 46 CPPFLAGS += -D_LARGE_FILES -D__ppc__
48b35be0 47 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
d015e398 48endif
c00a2289 49ifeq ($(UNAME), HP-UX)
d48a9799 50 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
b5ffb752 51 LIBS += -lpthread -ldl -lrt
d48a9799 52 CFLAGS += -D_LARGEFILE64_SOURCE
c00a2289 53endif
d015e398 54ifeq ($(UNAME), Darwin)
d48a9799 55 SOURCE += helpers.c engines/posixaio.c
d015e398
BC
56 LIBS += -lpthread -ldl
57endif
58ifneq (,$(findstring CYGWIN,$(UNAME)))
93bcfd20
BC
59 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
d3987946 64 #CC = i686-w64-mingw32-gcc
d015e398
BC
65endif
66
9b836561 67OBJS = $(SOURCE:.c=.o)
79d16311 68
61f78f3a
JA
69T_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)
3427207d 79
4c3ecec4
JA
80ifneq ($(findstring $(MAKEFLAGS),s),s)
81ifndef V
82 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 83 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
84endif
85endif
86
c1d5725e
JA
87INSTALL = install
88prefix = /usr/local
89bindir = $(prefix)/bin
bcdf7c58
JA
90
91ifeq ($(UNAME), Darwin)
92mandir = /usr/share/man
93else
d60e92d1 94mandir = $(prefix)/man
bcdf7c58 95endif
c1d5725e 96
692a5d22 97all: .depend $(PROGS) $(SCRIPTS) FORCE
f84622e9 98
692a5d22
JA
99.PHONY: all install clean
100.PHONY: FORCE cscope
101
102FIO-VERSION-FILE: FORCE
84306c1d 103 @$(SHELL) ./FIO-VERSION-GEN
692a5d22
JA
104-include FIO-VERSION-FILE
105
106CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
107
108.c.o: .depend FORCE
9b836561 109 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
e52947d1 110
a6204b68
JA
111init.o: FIO-VERSION-FILE
112 $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
113
61f78f3a
JA
114t/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)
fbc2792b 119
2f9ade3c 120fio: $(OBJS)
48b35be0 121 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
4c3ecec4 122
f84622e9 123.depend: $(SOURCE)
9b836561 124 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
0b2d6a7a 125
8541f32c 126$(PROGS): .depend
ebac4655 127
692a5d22
JA
128clean: FORCE
129 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
ebac4655 130
592ef98a 131cscope:
366badd3 132 @cscope -b -R
592ef98a 133
692a5d22 134install: $(PROGS) $(SCRIPTS) FORCE
513ba3f7 135 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
ebac4655 136 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
137 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
138 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 139 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 140
06fecb4e
JA
141ifneq ($(wildcard .depend),)
142include .depend
143endif