graph: prio tree alias handling
[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 -lz $(EXTLIBS)
8 PROGS   = fio
9 SCRIPTS = fio_generate_plots
10 UNAME  := $(shell uname)
11
12 GTK_CFLAGS = `pkg-config --cflags gtk+-2.0 gthread-2.0`
13 GTK_LDFLAGS = `pkg-config --libs gtk+-2.0 gthread-2.0`
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                 lib/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                 cconv.c lib/prio_tree.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 FIO_OBJS = $(OBJS) fio.o
72 GFIO_OBJS = $(OBJS) gfio.o graph.o tickmarks.o ghelpers.o goptions.o gerror.o \
73                         gclient.o
74
75 T_SMALLOC_OBJS = t/stest.o
76 T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
77 T_SMALLOC_PROGS = t/stest
78
79 T_IEEE_OBJS = t/ieee754.o
80 T_IEEE_OBJS += ieee754.o
81 T_IEEE_PROGS = t/ieee754
82
83 T_OBJS = $(T_SMALLOC_OBJS)
84 T_OBJS += $(T_IEEE_OBJS)
85
86 ifneq ($(findstring $(MAKEFLAGS),s),s)
87 ifndef V
88         QUIET_CC        = @echo '   ' CC $@;
89         QUIET_DEP       = @echo '   ' DEP $@;
90 endif
91 endif
92
93 INSTALL = install
94 prefix = /usr/local
95 bindir = $(prefix)/bin
96
97 ifeq ($(UNAME), Darwin)
98 mandir = /usr/share/man
99 else
100 mandir = $(prefix)/man
101 endif
102
103 all: .depend $(PROGS) $(SCRIPTS) FORCE
104
105 .PHONY: all install clean
106 .PHONY: FORCE cscope
107
108 FIO-VERSION-FILE: FORCE
109         @$(SHELL_PATH) ./FIO-VERSION-GEN
110 -include FIO-VERSION-FILE
111
112 CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
113
114 .c.o: .depend FORCE
115         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
116
117 goptions.o: goptions.c goptions.h
118         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c goptions.c
119
120 ghelpers.o: ghelpers.c ghelpers.h
121         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c ghelpers.c
122
123 gerror.o: gerror.c gerror.h
124         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gerror.c
125
126 gclient.o: gclient.c gclient.h
127         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gclient.c
128
129 gfio.o: gfio.c ghelpers.c
130         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gfio.c
131
132 graph.o: graph.c graph.h
133         $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c graph.c
134
135 t/stest: $(T_SMALLOC_OBJS)
136         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
137
138 t/ieee754: $(T_IEEE_OBJS)
139         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
140
141 fio: $(FIO_OBJS) FORCE
142         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(FIO_OBJS) $(LIBS) $(LDFLAGS)
143
144 gfio: $(GFIO_OBJS)
145         $(QUIET_CC)$(CC) $(LIBS) -o gfio $(GFIO_OBJS) $(LIBS) $(GTK_LDFLAGS)
146
147 .depend: $(SOURCE)
148         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
149
150 $(PROGS): .depend FORCE
151
152 clean: FORCE
153         -rm -f .depend $(GFIO_OBJS) $(FIO_OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core gfio FIO-VERSION-FILE
154
155 cscope:
156         @cscope -b -R
157
158 install: $(PROGS) $(SCRIPTS) FORCE
159         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
160         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
161         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
162         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
163         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
164
165 ifneq ($(wildcard .depend),)
166 include .depend
167 endif
168
169