time: convert to uint64_t
[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 -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 SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
13                 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
14                 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
15                 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
16                 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
17                 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
18                 json.c lib/zipf.c lib/axmap.c lib/lfsr.c gettime-thread.c
19
20 ifeq ($(UNAME), Linux)
21   SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
22                 engines/libaio.c engines/posixaio.c engines/sg.c \
23                 engines/splice.c engines/syslet-rw.c engines/guasi.c \
24                 engines/binject.c engines/rdma.c profiles/tiobench.c \
25                 engines/fusion-aw.c engines/falloc.c engines/e4defrag.c
26   LIBS += -lpthread -ldl -lrt -laio
27   LDFLAGS += -rdynamic
28 endif
29 ifeq ($(UNAME), Android)
30   SOURCE += diskutil.c fifo.c blktrace.c helpers.c trim.c \
31                 engines/splice.c profiles/tiobench.c engines/falloc.c \
32                 engines/e4defrag.c
33   LIBS += -ldl
34   LDFLAGS += -rdynamic
35   CPPFLAGS += -DFIO_NO_HAVE_SHM_H
36 endif
37 ifeq ($(UNAME), SunOS)
38   CC      = gcc
39   SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
40                 engines/solarisaio.c
41   LIBS   += -lpthread -ldl -laio -lrt -lnsl -lsocket
42   CPPFLAGS += -D__EXTENSIONS__
43 endif
44 ifeq ($(UNAME), FreeBSD)
45   SOURCE += helpers.c engines/posixaio.c
46   LIBS   += -lpthread -lrt
47   LDFLAGS += -rdynamic
48 endif
49 ifeq ($(UNAME), NetBSD)
50   SOURCE += helpers.c engines/posixaio.c
51   LIBS   += -lpthread -lrt
52   LDFLAGS += -rdynamic
53 endif
54 ifeq ($(UNAME), AIX)
55   SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
56   LIBS   += -lpthread -ldl -lrt
57   CPPFLAGS += -D_LARGE_FILES -D__ppc__
58   LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
59 endif
60 ifeq ($(UNAME), HP-UX)
61   CC      = gcc
62   SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
63   LIBS   += -lpthread -ldl -lrt
64   CFLAGS += -D_LARGEFILE64_SOURCE
65 endif
66 ifeq ($(UNAME), Darwin)
67   SOURCE += helpers.c engines/posixaio.c
68   LIBS   += -lpthread -ldl
69 endif
70 ifneq (,$(findstring CYGWIN,$(UNAME)))
71   SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
72   SOURCE += engines/windowsaio.c os/windows/posix.c
73   LIBS   += -lpthread -lpsapi -lws2_32
74   CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
75   CC      = x86_64-w64-mingw32-gcc
76   #CC     = i686-w64-mingw32-gcc
77 endif
78
79 OBJS = $(SOURCE:.c=.o)
80
81 T_SMALLOC_OBJS = t/stest.o
82 T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o
83 T_SMALLOC_PROGS = t/stest
84
85 T_IEEE_OBJS = t/ieee754.o
86 T_IEEE_OBJS += lib/ieee754.o
87 T_IEEE_PROGS = t/ieee754
88
89 T_ZIPF_OBS = t/genzipf.o
90 T_ZIPF_OBJS += t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o
91 T_ZIPF_PROGS = t/genzipf
92
93 T_AXMAP_OBJS = t/axmap.o
94 T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
95 T_AXMAP_PROGS = t/axmap
96
97 T_OBJS = $(T_SMALLOC_OBJS)
98 T_OBJS += $(T_IEEE_OBJS)
99 T_OBJS += $(T_ZIPF_OBJS)
100 T_OBJS += $(T_AXMAP_OBJS)
101
102 T_PROGS = $(T_SMALLOC_PROGS)
103 T_PROGS += $(T_IEEE_PROGS)
104 T_PROGS += $(T_ZIPF_PROGS)
105 T_PROGS += $(T_AXMAP_PROGS)
106
107 ifneq ($(findstring $(MAKEFLAGS),s),s)
108 ifndef V
109         QUIET_CC        = @echo '   ' CC $@;
110         QUIET_DEP       = @echo '   ' DEP $@;
111 endif
112 endif
113
114 INSTALL = install
115 prefix = /usr/local
116 bindir = $(prefix)/bin
117
118 ifeq ($(UNAME), Darwin)
119 mandir = /usr/share/man
120 else
121 mandir = $(prefix)/man
122 endif
123
124 all: .depend $(PROGS) $(SCRIPTS) FORCE
125
126 .PHONY: all install clean
127 .PHONY: FORCE cscope
128
129 FIO-VERSION-FILE: FORCE
130         @$(SHELL) ./FIO-VERSION-GEN
131 -include FIO-VERSION-FILE
132
133 CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
134
135 .c.o: .depend FORCE
136         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
137
138 init.o: FIO-VERSION-FILE
139         $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
140
141 t/stest: $(T_SMALLOC_OBJS)
142         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
143
144 t/ieee754: $(T_IEEE_OBJS)
145         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
146
147 t/genzipf: $(T_ZIPF_OBJS)
148         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS)
149
150 t/axmap: $(T_AXMAP_OBJS)
151         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_AXMAP_OBJS) $(LIBS) $(LDFLAGS)
152
153 fio: $(OBJS)
154         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
155
156 .depend: $(SOURCE)
157         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
158
159 $(PROGS): .depend
160
161 clean: FORCE
162         -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
163
164 cscope:
165         @cscope -b -R
166
167 install: $(PROGS) $(SCRIPTS) FORCE
168         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
169         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
170         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
171         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
172         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
173
174 ifneq ($(wildcard .depend),)
175 include .depend
176 endif