Fio 2.0.12.1
[fio.git] / Makefile
1 ifneq ($(origin CC), environment)
2 CC      = $(CROSS_COMPILE)gcc
3 endif
4 DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
5 CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
6         $(DEBUGFLAGS)
7 OPTFLAGS= -O3 -g $(EXTFLAGS)
8 CFLAGS  = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
9 LIBS    = -lm $(EXTLIBS)
10 PROGS   = fio
11 SCRIPTS = fio_generate_plots
12 UNAME  := $(shell uname)
13
14 SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
15                 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
16                 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
17                 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
18                 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
19                 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
20                 json.c lib/zipf.c lib/axmap.c lib/lfsr.c gettime-thread.c
21
22 ifeq ($(UNAME), Linux)
23   SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
24                 engines/libaio.c engines/posixaio.c engines/sg.c \
25                 engines/splice.c engines/syslet-rw.c engines/guasi.c \
26                 engines/binject.c engines/rdma.c profiles/tiobench.c \
27                 engines/fusion-aw.c engines/falloc.c engines/e4defrag.c
28   LIBS += -lpthread -ldl -lrt -laio
29   LDFLAGS += -rdynamic
30 endif
31 ifeq ($(UNAME), Android)
32   SOURCE += diskutil.c fifo.c blktrace.c helpers.c trim.c \
33                 engines/splice.c profiles/tiobench.c engines/falloc.c \
34                 engines/e4defrag.c
35   LIBS += -ldl
36   LDFLAGS += -rdynamic
37   CPPFLAGS += -DFIO_NO_HAVE_SHM_H
38 endif
39 ifeq ($(UNAME), SunOS)
40   SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
41                 engines/solarisaio.c
42   LIBS   += -lpthread -ldl -laio -lrt -lnsl -lsocket
43   CPPFLAGS += -D__EXTENSIONS__
44 endif
45 ifeq ($(UNAME), FreeBSD)
46   SOURCE += helpers.c engines/posixaio.c
47   LIBS   += -lpthread -lrt
48   LDFLAGS += -rdynamic
49 endif
50 ifeq ($(UNAME), NetBSD)
51   SOURCE += helpers.c engines/posixaio.c
52   LIBS   += -lpthread -lrt
53   LDFLAGS += -rdynamic
54 endif
55 ifeq ($(UNAME), AIX)
56   SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
57   LIBS   += -lpthread -ldl -lrt
58   CPPFLAGS += -D_LARGE_FILES -D__ppc__
59   LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
60 endif
61 ifeq ($(UNAME), HP-UX)
62   SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
63   LIBS   += -lpthread -ldl -lrt
64   CFLAGS += -D_LARGEFILE64_SOURCE
65 endif
66 ifeq ($(UNAME), Darwin)
67   SOURCE += helpers.c engines/posixaio.c
68   LIBS   += -lpthread -ldl
69 endif
70 ifneq (,$(findstring CYGWIN,$(UNAME)))
71   SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
72   SOURCE += engines/windowsaio.c os/windows/posix.c
73   LIBS   += -lpthread -lpsapi -lws2_32
74   CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
75   CC      = x86_64-w64-mingw32-gcc
76   #CC     = i686-w64-mingw32-gcc
77 endif
78
79 OBJS = $(SOURCE:.c=.o)
80
81 T_SMALLOC_OBJS = t/stest.o
82 T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o
83 T_SMALLOC_PROGS = t/stest
84
85 T_IEEE_OBJS = t/ieee754.o
86 T_IEEE_OBJS += lib/ieee754.o
87 T_IEEE_PROGS = t/ieee754
88
89 T_ZIPF_OBS = t/genzipf.o
90 T_ZIPF_OBJS += t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o
91 T_ZIPF_PROGS = t/genzipf
92
93 T_AXMAP_OBJS = t/axmap.o
94 T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
95 T_AXMAP_PROGS = t/axmap
96
97 T_OBJS = $(T_SMALLOC_OBJS)
98 T_OBJS += $(T_IEEE_OBJS)
99 T_OBJS += $(T_ZIPF_OBJS)
100 T_OBJS += $(T_AXMAP_OBJS)
101
102 T_PROGS = $(T_SMALLOC_PROGS)
103 T_PROGS += $(T_IEEE_PROGS)
104 T_PROGS += $(T_ZIPF_PROGS)
105 T_PROGS += $(T_AXMAP_PROGS)
106
107 ifneq ($(findstring $(MAKEFLAGS),s),s)
108 ifndef V
109         QUIET_CC        = @echo '   ' CC $@;
110         QUIET_DEP       = @echo '   ' DEP $@;
111 endif
112 endif
113
114 INSTALL = install
115 prefix = /usr/local
116 bindir = $(prefix)/bin
117
118 ifeq ($(UNAME), Darwin)
119 mandir = /usr/share/man
120 else
121 mandir = $(prefix)/man
122 endif
123
124 all: .depend $(PROGS) $(SCRIPTS) FORCE
125
126 .PHONY: all install clean
127 .PHONY: FORCE cscope
128
129 FIO-VERSION-FILE: FORCE
130         @$(SHELL) ./FIO-VERSION-GEN
131 -include FIO-VERSION-FILE
132
133 CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
134
135 .c.o: .depend FORCE
136         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
137
138 init.o: FIO-VERSION-FILE
139         $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
140
141 t/stest: $(T_SMALLOC_OBJS)
142         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
143
144 t/ieee754: $(T_IEEE_OBJS)
145         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
146
147 t/genzipf: $(T_ZIPF_OBJS)
148         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS)
149
150 t/axmap: $(T_AXMAP_OBJS)
151         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_AXMAP_OBJS) $(LIBS) $(LDFLAGS)
152
153 fio: $(OBJS)
154         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
155
156 .depend: $(SOURCE)
157         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
158
159 $(PROGS): .depend
160
161 clean: FORCE
162         -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
163
164 cscope:
165         @cscope -b -R
166
167 install: $(PROGS) $(SCRIPTS) FORCE
168         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
169         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
170         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
171         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
172         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
173
174 ifneq ($(wildcard .depend),)
175 include .depend
176 endif