Move init code info libfio.c
[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 -fno-omit-frame-pointer -g $(EXTFLAGS)
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm $(EXTLIBS)
8PROGS = fio
9SCRIPTS = fio_generate_plots
10UNAME := $(shell uname)
11
12GTKCFLAGS = `pkg-config gtk+-2.0 --cflags`
13GTKLDFLAGS = `pkg-config gtk+-2.0 gthread-2.0 --libs`
14
15SOURCE := gettime.c ioengines.c init.c stat.c log.c time.c filesetup.c \
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 \
18 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
19 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
20 memalign.c server.c client.c iolog.c backend.c libfio.c flow.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 LIBS += -lpthread -ldl -lrt -laio
28 LDFLAGS += -rdynamic
29endif
30ifeq ($(UNAME), SunOS)
31 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
32 engines/solarisaio.c
33 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
34 CPPFLAGS += -D__EXTENSIONS__
35endif
36ifeq ($(UNAME), FreeBSD)
37 SOURCE += helpers.c engines/posixaio.c
38 LIBS += -lpthread -lrt
39 LDFLAGS += -rdynamic
40endif
41ifeq ($(UNAME), NetBSD)
42 SOURCE += helpers.c engines/posixaio.c
43 LIBS += -lpthread -lrt
44 LDFLAGS += -rdynamic
45endif
46ifeq ($(UNAME), AIX)
47 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
48 LIBS += -lpthread -ldl -lrt
49 CPPFLAGS += -D_LARGE_FILES -D__ppc__
50 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
51endif
52ifeq ($(UNAME), HP-UX)
53 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
54 LIBS += -lpthread -ldl -lrt
55 CFLAGS += -D_LARGEFILE64_SOURCE
56endif
57ifeq ($(UNAME), Darwin)
58 SOURCE += helpers.c engines/posixaio.c
59 LIBS += -lpthread -ldl
60endif
61ifneq (,$(findstring CYGWIN,$(UNAME)))
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
67endif
68
69FIO_SOURCE = $(SOURCE) fio.c
70GFIO_SOURCE = $(SOURCE) gfio.c
71
72OBJS = $(SOURCE:.c=.o)
73FIO_OBJS = $(OBJS) fio.o
74GFIO_OBJS = $(OBJS) gfio.o
75
76T_SMALLOC_OBJS = t/stest.o
77T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
78T_SMALLOC_PROGS = t/stest
79
80T_IEEE_OBJS = t/ieee754.o
81T_IEEE_OBJS += ieee754.o
82T_IEEE_PROGS = t/ieee754
83
84T_OBJS = $(T_SMALLOC_OBJS)
85T_OBJS += $(T_IEEE_OBJS)
86
87ifneq ($(findstring $(MAKEFLAGS),s),s)
88ifndef V
89 QUIET_CC = @echo ' ' CC $@;
90 QUIET_DEP = @echo ' ' DEP $@;
91endif
92endif
93
94INSTALL = install
95prefix = /usr/local
96bindir = $(prefix)/bin
97
98ifeq ($(UNAME), Darwin)
99mandir = /usr/share/man
100else
101mandir = $(prefix)/man
102endif
103
104all: .depend $(PROGS) $(SCRIPTS)
105
106.c.o: .depend
107 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
108
109t/stest: $(T_SMALLOC_OBJS)
110 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
111
112t/ieee754: $(T_IEEE_OBJS)
113 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
114
115fio: $(FIO_OBJS)
116 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(FIO_OBJS) $(LIBS) $(LDFLAGS)
117
118.depend: $(SOURCE)
119 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
120
121$(PROGS): .depend
122
123clean:
124 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core
125
126cscope:
127 @cscope -b -R
128
129install: $(PROGS) $(SCRIPTS)
130 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
131 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
132 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
133 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
134 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
135
136ifneq ($(wildcard .depend),)
137include .depend
138endif
139
140gfio: $(OBJS) gfio.c
141 $(CC) ${CPPFLAGS} ${CFLAGS} ${GTKCFLAGS} ${LDFLAGS} ${GTKLDFLAGS} -pthread -o gfio $(OBJS) gfio.c $(LIBS) ${LDFLAGS}
142
143
144