Fix variable type warning
[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= -O3 -g -ffast-math $(EXTFLAGS)
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm $(EXTLIBS)
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 lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
16 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
17 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
18 json.c lib/zipf.c lib/axmap.c lib/lfsr.c gettime-thread.c
19
20ifeq ($(UNAME), Linux)
21 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
22 engines/libaio.c engines/posixaio.c engines/sg.c \
23 engines/splice.c engines/syslet-rw.c engines/guasi.c \
24 engines/binject.c engines/rdma.c profiles/tiobench.c \
25 engines/fusion-aw.c engines/falloc.c engines/e4defrag.c
26 LIBS += -lpthread -ldl -lrt -laio
27 LDFLAGS += -rdynamic
28endif
29ifeq ($(UNAME), Android)
30 SOURCE += diskutil.c fifo.c blktrace.c helpers.c trim.c \
31 engines/splice.c profiles/tiobench.c engines/falloc.c \
32 engines/e4defrag.c
33 LIBS += -ldl
34 LDFLAGS += -rdynamic
35 CPPFLAGS += -DFIO_NO_HAVE_SHM_H
36endif
37ifeq ($(UNAME), SunOS)
38 CC = gcc
39 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
40 engines/solarisaio.c
41 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
42 CPPFLAGS += -D__EXTENSIONS__
43endif
44ifeq ($(UNAME), FreeBSD)
45 SOURCE += helpers.c engines/posixaio.c
46 LIBS += -lpthread -lrt
47 LDFLAGS += -rdynamic
48endif
49ifeq ($(UNAME), NetBSD)
50 SOURCE += helpers.c engines/posixaio.c
51 LIBS += -lpthread -lrt
52 LDFLAGS += -rdynamic
53endif
54ifeq ($(UNAME), AIX)
55 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
56 LIBS += -lpthread -ldl -lrt
57 CPPFLAGS += -D_LARGE_FILES -D__ppc__
58 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
59endif
60ifeq ($(UNAME), HP-UX)
61 CC = gcc
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
65endif
66ifeq ($(UNAME), Darwin)
67 SOURCE += helpers.c engines/posixaio.c
68 LIBS += -lpthread -ldl
69endif
70ifneq (,$(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
77endif
78
79OBJS = $(SOURCE:.c=.o)
80
81T_SMALLOC_OBJS = t/stest.o
82T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o
83T_SMALLOC_PROGS = t/stest
84
85T_IEEE_OBJS = t/ieee754.o
86T_IEEE_OBJS += lib/ieee754.o
87T_IEEE_PROGS = t/ieee754
88
89T_ZIPF_OBS = t/genzipf.o
90T_ZIPF_OBJS += t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o
91T_ZIPF_PROGS = t/genzipf
92
93T_AXMAP_OBJS = t/axmap.o
94T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
95T_AXMAP_PROGS = t/axmap
96
97T_OBJS = $(T_SMALLOC_OBJS)
98T_OBJS += $(T_IEEE_OBJS)
99T_OBJS += $(T_ZIPF_OBJS)
100T_OBJS += $(T_AXMAP_OBJS)
101
102T_PROGS = $(T_SMALLOC_PROGS)
103T_PROGS += $(T_IEEE_PROGS)
104T_PROGS += $(T_ZIPF_PROGS)
105T_PROGS += $(T_AXMAP_PROGS)
106
107ifneq ($(findstring $(MAKEFLAGS),s),s)
108ifndef V
109 QUIET_CC = @echo ' ' CC $@;
110 QUIET_DEP = @echo ' ' DEP $@;
111endif
112endif
113
114INSTALL = install
115prefix = /usr/local
116bindir = $(prefix)/bin
117
118ifeq ($(UNAME), Darwin)
119mandir = /usr/share/man
120else
121mandir = $(prefix)/man
122endif
123
124all: .depend $(PROGS) $(SCRIPTS) FORCE
125
126.PHONY: all install clean
127.PHONY: FORCE cscope
128
129FIO-VERSION-FILE: FORCE
130 @$(SHELL) ./FIO-VERSION-GEN
131-include FIO-VERSION-FILE
132
133CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
134
135.c.o: .depend FORCE
136 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
137
138init.o: FIO-VERSION-FILE
139 $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
140
141t/stest: $(T_SMALLOC_OBJS)
142 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
143
144t/ieee754: $(T_IEEE_OBJS)
145 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
146
147t/genzipf: $(T_ZIPF_OBJS)
148 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS)
149
150t/axmap: $(T_AXMAP_OBJS)
151 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_AXMAP_OBJS) $(LIBS) $(LDFLAGS)
152
153fio: $(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
161clean: FORCE
162 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
163
164cscope:
165 @cscope -b -R
166
167install: $(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
174ifneq ($(wildcard .depend),)
175include .depend
176endif