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