fio: add minimal gui program
[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
ff1f3280
SC
12GTKCFLAGS = `pkg-config gtk+-2.0 --cflags`
13GTKLDFLAGS = `pkg-config gtk+-2.0 --libs`
14
93bcfd20 15SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
d015e398
BC
16 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
17 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 \
9e684a49 20 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c
d015e398
BC
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 \
21b8aee8 26 engines/binject.c engines/rdma.c profiles/tiobench.c
d015e398 27 LIBS += -lpthread -ldl -lrt -laio
213a01b0 28 LDFLAGS += -rdynamic
d015e398
BC
29endif
30ifeq ($(UNAME), SunOS)
33c142be 31 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
d48a9799 32 engines/solarisaio.c
d015e398
BC
33 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
34 CPPFLAGS += -D__EXTENSIONS__
35endif
36ifeq ($(UNAME), FreeBSD)
d48a9799 37 SOURCE += helpers.c engines/posixaio.c
d015e398 38 LIBS += -lpthread -lrt
213a01b0 39 LDFLAGS += -rdynamic
d015e398
BC
40endif
41ifeq ($(UNAME), NetBSD)
d48a9799 42 SOURCE += helpers.c engines/posixaio.c
d015e398 43 LIBS += -lpthread -lrt
213a01b0 44 LDFLAGS += -rdynamic
d015e398
BC
45endif
46ifeq ($(UNAME), AIX)
d48a9799 47 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
d015e398 48 LIBS += -lpthread -ldl -lrt
d015e398 49 CPPFLAGS += -D_LARGE_FILES -D__ppc__
48b35be0 50 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
d015e398 51endif
c00a2289 52ifeq ($(UNAME), HP-UX)
d48a9799 53 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
b5ffb752 54 LIBS += -lpthread -ldl -lrt
d48a9799 55 CFLAGS += -D_LARGEFILE64_SOURCE
c00a2289 56endif
d015e398 57ifeq ($(UNAME), Darwin)
d48a9799 58 SOURCE += helpers.c engines/posixaio.c
d015e398
BC
59 LIBS += -lpthread -ldl
60endif
61ifneq (,$(findstring CYGWIN,$(UNAME)))
93bcfd20
BC
62 SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
63 SOURCE += engines/windowsaio.c os/windows/posix.c
64 LIBS += -lpthread -lpsapi -lws2_32
65 CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
66 CC = x86_64-w64-mingw32-gcc
d015e398
BC
67endif
68
9b836561 69OBJS = $(SOURCE:.c=.o)
79d16311 70
61f78f3a
JA
71T_SMALLOC_OBJS = t/stest.o
72T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
73T_SMALLOC_PROGS = t/stest
74
75T_IEEE_OBJS = t/ieee754.o
76T_IEEE_OBJS += ieee754.o
77T_IEEE_PROGS = t/ieee754
78
79T_OBJS = $(T_SMALLOC_OBJS)
80T_OBJS += $(T_IEEE_OBJS)
3427207d 81
4c3ecec4
JA
82ifneq ($(findstring $(MAKEFLAGS),s),s)
83ifndef V
84 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 85 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
86endif
87endif
88
c1d5725e
JA
89INSTALL = install
90prefix = /usr/local
91bindir = $(prefix)/bin
bcdf7c58
JA
92
93ifeq ($(UNAME), Darwin)
94mandir = /usr/share/man
95else
d60e92d1 96mandir = $(prefix)/man
bcdf7c58 97endif
c1d5725e 98
f84622e9
MZ
99all: .depend $(PROGS) $(SCRIPTS)
100
101.c.o: .depend
9b836561 102 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
e52947d1 103
61f78f3a
JA
104t/stest: $(T_SMALLOC_OBJS)
105 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
106
107t/ieee754: $(T_IEEE_OBJS)
108 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
fbc2792b 109
2f9ade3c 110fio: $(OBJS)
48b35be0 111 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
4c3ecec4 112
f84622e9 113.depend: $(SOURCE)
9b836561 114 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
0b2d6a7a 115
f84622e9 116$(PROGS): .depend
ebac4655
JA
117
118clean:
3427207d 119 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core
ebac4655 120
592ef98a 121cscope:
366badd3 122 @cscope -b -R
592ef98a 123
ebac4655 124install: $(PROGS) $(SCRIPTS)
513ba3f7 125 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
ebac4655 126 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
127 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
128 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 129 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 130
06fecb4e
JA
131ifneq ($(wildcard .depend),)
132include .depend
133endif
ff1f3280
SC
134
135gfio: gfio.c
136 $(CC) ${CFLAGS} ${GTKCFLAGS} ${GTKLDFLAGS} -pthread -o gfio gfio.c
137
138