Fix man page indentation
[fio.git] / Makefile
... / ...
CommitLineData
1ifneq ($(origin CC), environment)
2CC = $(CROSS_COMPILE)gcc
3endif
4DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
5CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
6 $(DEBUGFLAGS)
7OPTFLAGS= -O3 -g $(EXTFLAGS)
8CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
9LIBS = -lm $(EXTLIBS)
10PROGS = fio
11SCRIPTS = fio_generate_plots
12UNAME := $(shell uname)
13
14SOURCE := 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
22ifeq ($(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
30endif
31ifeq ($(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
38endif
39ifeq ($(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__
44endif
45ifeq ($(UNAME), FreeBSD)
46 SOURCE += helpers.c engines/posixaio.c
47 LIBS += -lpthread -lrt
48 LDFLAGS += -rdynamic
49endif
50ifeq ($(UNAME), NetBSD)
51 SOURCE += helpers.c engines/posixaio.c
52 LIBS += -lpthread -lrt
53 LDFLAGS += -rdynamic
54endif
55ifeq ($(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
60endif
61ifeq ($(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
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