fio: link fio code with gui 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 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 FIO_SOURCE = $(SOURCE) fio.c
71 GFIO_SOURCE = $(SOURCE) gfio.c
72
73 OBJS = $(SOURCE:.c=.o)
74 FIO_OBJS = $(OBJS) fio.o
75 GFIO_OBJS = $(OBJS) gfio.o
76
77 T_SMALLOC_OBJS = t/stest.o
78 T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
79 T_SMALLOC_PROGS = t/stest
80
81 T_IEEE_OBJS = t/ieee754.o
82 T_IEEE_OBJS += ieee754.o
83 T_IEEE_PROGS = t/ieee754
84
85 T_OBJS = $(T_SMALLOC_OBJS)
86 T_OBJS += $(T_IEEE_OBJS)
87
88 ifneq ($(findstring $(MAKEFLAGS),s),s)
89 ifndef V
90         QUIET_CC        = @echo '   ' CC $@;
91         QUIET_DEP       = @echo '   ' DEP $@;
92 endif
93 endif
94
95 INSTALL = install
96 prefix = /usr/local
97 bindir = $(prefix)/bin
98
99 ifeq ($(UNAME), Darwin)
100 mandir = /usr/share/man
101 else
102 mandir = $(prefix)/man
103 endif
104
105 all: .depend $(PROGS) $(SCRIPTS)
106
107 .c.o: .depend
108         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
109
110 t/stest: $(T_SMALLOC_OBJS)
111         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
112
113 t/ieee754: $(T_IEEE_OBJS)
114         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
115
116 fio: $(FIO_OBJS)
117         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(FIO_OBJS) $(LIBS) $(LDFLAGS)
118
119 .depend: $(SOURCE)
120         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
121
122 $(PROGS): .depend
123
124 clean:
125         -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core
126
127 cscope:
128         @cscope -b -R
129
130 install: $(PROGS) $(SCRIPTS)
131         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
132         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
133         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
134         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
135         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
136
137 ifneq ($(wildcard .depend),)
138 include .depend
139 endif
140
141 gfio:   $(OBJS) gfio.c
142         $(CC) ${CPPFLAGS} ${CFLAGS} ${GTKCFLAGS} ${LDFLAGS} ${GTKLDFLAGS} -pthread -o gfio $(OBJS) gfio.c $(LIBS) ${LDFLAGS}
143
144
145