server: include number of CPUs in probe reply
[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)
1b42725f 7LIBS = -lm -lz $(EXTLIBS)
ebac4655
JA
8PROGS = fio
9SCRIPTS = fio_generate_plots
d015e398
BC
10UNAME := $(shell uname)
11
70d07ce1
JA
12GTK_CFLAGS = `pkg-config --cflags gtk+-2.0 gthread-2.0`
13GTK_LDFLAGS = `pkg-config --libs gtk+-2.0 gthread-2.0`
ff1f3280 14
8232e285 15SOURCE := gettime.c ioengines.c init.c stat.c log.c time.c filesetup.c \
d015e398 16 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
05775438 17 lib/rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
c7c6cb4c 18 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
d48a9799 19 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
2dc1cbb5 20 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
b65c7ec4 21 cconv.c lib/prio_tree.c
d015e398
BC
22
23ifeq ($(UNAME), Linux)
24 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
25 engines/libaio.c engines/posixaio.c engines/sg.c \
26 engines/splice.c engines/syslet-rw.c engines/guasi.c \
21b8aee8 27 engines/binject.c engines/rdma.c profiles/tiobench.c
d015e398 28 LIBS += -lpthread -ldl -lrt -laio
213a01b0 29 LDFLAGS += -rdynamic
d015e398
BC
30endif
31ifeq ($(UNAME), SunOS)
33c142be 32 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
d48a9799 33 engines/solarisaio.c
d015e398
BC
34 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
35 CPPFLAGS += -D__EXTENSIONS__
36endif
37ifeq ($(UNAME), FreeBSD)
d48a9799 38 SOURCE += helpers.c engines/posixaio.c
d015e398 39 LIBS += -lpthread -lrt
213a01b0 40 LDFLAGS += -rdynamic
d015e398
BC
41endif
42ifeq ($(UNAME), NetBSD)
d48a9799 43 SOURCE += helpers.c engines/posixaio.c
d015e398 44 LIBS += -lpthread -lrt
213a01b0 45 LDFLAGS += -rdynamic
d015e398
BC
46endif
47ifeq ($(UNAME), AIX)
d48a9799 48 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
d015e398 49 LIBS += -lpthread -ldl -lrt
d015e398 50 CPPFLAGS += -D_LARGE_FILES -D__ppc__
48b35be0 51 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
d015e398 52endif
c00a2289 53ifeq ($(UNAME), HP-UX)
d48a9799 54 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
b5ffb752 55 LIBS += -lpthread -ldl -lrt
d48a9799 56 CFLAGS += -D_LARGEFILE64_SOURCE
c00a2289 57endif
d015e398 58ifeq ($(UNAME), Darwin)
d48a9799 59 SOURCE += helpers.c engines/posixaio.c
d015e398
BC
60 LIBS += -lpthread -ldl
61endif
62ifneq (,$(findstring CYGWIN,$(UNAME)))
93bcfd20
BC
63 SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
64 SOURCE += engines/windowsaio.c os/windows/posix.c
65 LIBS += -lpthread -lpsapi -lws2_32
66 CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
67 CC = x86_64-w64-mingw32-gcc
d015e398
BC
68endif
69
9b836561 70OBJS = $(SOURCE:.c=.o)
8232e285 71FIO_OBJS = $(OBJS) fio.o
1252d8f2 72GFIO_OBJS = $(OBJS) gfio.o graph.o tickmarks.o ghelpers.o goptions.o gerror.o \
bf3f7027 73 gclient.o gcompat.o cairo_text_helpers.o printing.o
79d16311 74
61f78f3a
JA
75T_SMALLOC_OBJS = t/stest.o
76T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
77T_SMALLOC_PROGS = t/stest
78
79T_IEEE_OBJS = t/ieee754.o
80T_IEEE_OBJS += ieee754.o
81T_IEEE_PROGS = t/ieee754
82
83T_OBJS = $(T_SMALLOC_OBJS)
84T_OBJS += $(T_IEEE_OBJS)
3427207d 85
4c3ecec4
JA
86ifneq ($(findstring $(MAKEFLAGS),s),s)
87ifndef V
88 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 89 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
90endif
91endif
92
c1d5725e
JA
93INSTALL = install
94prefix = /usr/local
95bindir = $(prefix)/bin
bcdf7c58
JA
96
97ifeq ($(UNAME), Darwin)
98mandir = /usr/share/man
99else
d60e92d1 100mandir = $(prefix)/man
bcdf7c58 101endif
c1d5725e 102
3d43382c 103all: .depend $(PROGS) $(SCRIPTS) FORCE
f84622e9 104
3d43382c
JA
105.PHONY: all install clean
106.PHONY: FORCE cscope
107
108FIO-VERSION-FILE: FORCE
109 @$(SHELL_PATH) ./FIO-VERSION-GEN
110-include FIO-VERSION-FILE
111
112CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
113
114.c.o: .depend FORCE
9b836561 115 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
e52947d1 116
f762cef9
JA
117gcompat.o: gcompat.c gcompat.h
118 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gcompat.c
119
9af4a244
JA
120goptions.o: goptions.c goptions.h
121 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c goptions.c
122
53e0e85d
JA
123ghelpers.o: ghelpers.c ghelpers.h
124 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c ghelpers.c
125
41666588
JA
126gerror.o: gerror.c gerror.h
127 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gerror.c
128
1252d8f2
JA
129gclient.o: gclient.c gclient.h
130 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gclient.c
131
53e0e85d 132gfio.o: gfio.c ghelpers.c
70d07ce1
JA
133 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gfio.c
134
53e0e85d 135graph.o: graph.c graph.h
af58ef32
SC
136 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c graph.c
137
ee2f55b2
SC
138cairo_text_helpers.o: cairo_text_helpers.c cairo_text_helpers.h
139 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c cairo_text_helpers.c
140
bf3f7027
SC
141printing.o: printing.c printing.h
142 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c printing.c
143
61f78f3a
JA
144t/stest: $(T_SMALLOC_OBJS)
145 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
146
147t/ieee754: $(T_IEEE_OBJS)
148 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
fbc2792b 149
3d43382c 150fio: $(FIO_OBJS) FORCE
8232e285 151 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(FIO_OBJS) $(LIBS) $(LDFLAGS)
4c3ecec4 152
70d07ce1
JA
153gfio: $(GFIO_OBJS)
154 $(QUIET_CC)$(CC) $(LIBS) -o gfio $(GFIO_OBJS) $(LIBS) $(GTK_LDFLAGS)
155
f84622e9 156.depend: $(SOURCE)
9b836561 157 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
0b2d6a7a 158
3d43382c 159$(PROGS): .depend FORCE
ebac4655 160
3d43382c
JA
161clean: FORCE
162 -rm -f .depend $(GFIO_OBJS) $(FIO_OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core gfio FIO-VERSION-FILE
ebac4655 163
592ef98a 164cscope:
366badd3 165 @cscope -b -R
592ef98a 166
3d43382c 167install: $(PROGS) $(SCRIPTS) FORCE
513ba3f7 168 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
ebac4655 169 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
170 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
171 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 172 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 173
06fecb4e
JA
174ifneq ($(wildcard .depend),)
175include .depend
176endif
ff1f3280 177
ff1f3280 178