Add LFSR generator
[fio.git] / Makefile
... / ...
CommitLineData
1ifneq ($(origin CC), environment)
2CC = $(CROSS_COMPILE)gcc
3endif
4DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
5CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
6 $(DEBUGFLAGS)
7OPTFLAGS= -O3 -g $(EXTFLAGS)
8CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
9LIBS = -lm $(EXTLIBS)
10PROGS = fio
11SCRIPTS = fio_generate_plots
12UNAME := $(shell uname)
13
14SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
15 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
16 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
17 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
18 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
19 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
20 json.c lib/zipf.c lib/bitmap.c lib/lfsr.c gettime-thread.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 engines/fusion-aw.c engines/falloc.c engines/e4defrag.c
28 LIBS += -lpthread -ldl -lrt -laio
29 LDFLAGS += -rdynamic
30endif
31ifeq ($(UNAME), Android)
32 SOURCE += diskutil.c fifo.c blktrace.c helpers.c trim.c \
33 engines/splice.c profiles/tiobench.c engines/falloc.c \
34 engines/e4defrag.c
35 LIBS += -ldl
36 LDFLAGS += -rdynamic
37 CPPFLAGS += -DFIO_NO_HAVE_SHM_H
38endif
39ifeq ($(UNAME), SunOS)
40 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
41 engines/solarisaio.c
42 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
43 CPPFLAGS += -D__EXTENSIONS__
44endif
45ifeq ($(UNAME), FreeBSD)
46 SOURCE += helpers.c engines/posixaio.c
47 LIBS += -lpthread -lrt
48 LDFLAGS += -rdynamic
49endif
50ifeq ($(UNAME), NetBSD)
51 SOURCE += helpers.c engines/posixaio.c
52 LIBS += -lpthread -lrt
53 LDFLAGS += -rdynamic
54endif
55ifeq ($(UNAME), AIX)
56 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
57 LIBS += -lpthread -ldl -lrt
58 CPPFLAGS += -D_LARGE_FILES -D__ppc__
59 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
60endif
61ifeq ($(UNAME), HP-UX)
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
65endif
66ifeq ($(UNAME), Darwin)
67 SOURCE += helpers.c engines/posixaio.c
68 LIBS += -lpthread -ldl
69endif
70ifneq (,$(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
77endif
78
79OBJS = $(SOURCE:.c=.o)
80
81T_SMALLOC_OBJS = t/stest.o
82T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o
83T_SMALLOC_PROGS = t/stest
84
85T_IEEE_OBJS = t/ieee754.o
86T_IEEE_OBJS += lib/ieee754.o
87T_IEEE_PROGS = t/ieee754
88
89T_ZIPF_OBS = t/genzipf.o
90T_ZIPF_OBJS += t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o
91T_ZIPF_PROGS = t/genzipf
92
93T_OBJS = $(T_SMALLOC_OBJS)
94T_OBJS += $(T_IEEE_OBJS)
95T_OBJS += $(T_ZIPF_OBJS)
96
97T_PROGS = $(T_SMALLOC_PROGS)
98T_PROGS += $(T_IEEE_PROGS)
99T_PROGS += $(T_ZIPF_PROGS)
100
101ifneq ($(findstring $(MAKEFLAGS),s),s)
102ifndef V
103 QUIET_CC = @echo ' ' CC $@;
104 QUIET_DEP = @echo ' ' DEP $@;
105endif
106endif
107
108INSTALL = install
109prefix = /usr/local
110bindir = $(prefix)/bin
111
112ifeq ($(UNAME), Darwin)
113mandir = /usr/share/man
114else
115mandir = $(prefix)/man
116endif
117
118all: .depend $(PROGS) $(SCRIPTS) FORCE
119
120.PHONY: all install clean
121.PHONY: FORCE cscope
122
123FIO-VERSION-FILE: FORCE
124 @$(SHELL) ./FIO-VERSION-GEN
125-include FIO-VERSION-FILE
126
127CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
128
129.c.o: .depend FORCE
130 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
131
132init.o: FIO-VERSION-FILE
133 $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
134
135t/stest: $(T_SMALLOC_OBJS)
136 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
137
138t/ieee754: $(T_IEEE_OBJS)
139 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
140
141t/genzipf: $(T_ZIPF_OBJS)
142 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS)
143
144fio: $(OBJS)
145 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
146
147.depend: $(SOURCE)
148 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
149
150$(PROGS): .depend
151
152clean: FORCE
153 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
154
155cscope:
156 @cscope -b -R
157
158install: $(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
165ifneq ($(wildcard .depend),)
166include .depend
167endif