Switch to using our internal Tausworthe based random generator for offsets
[fio.git] / Makefile
CommitLineData
12cbb469 1CC = gcc
79e48f72 2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
9b836561
BC
3CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4 $(DEBUGFLAGS)
c2019d39 5OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
d015e398
BC
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm
ebac4655
JA
8PROGS = fio
9SCRIPTS = fio_generate_plots
d015e398
BC
10UNAME := $(shell uname)
11
9b836561 12SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
d015e398
BC
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 $(wildcard crc/*.c) engines/cpu.c \
16 engines/mmap.c engines/sync.c engines/null.c engines/net.c
17
18ifeq ($(UNAME), Linux)
19 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
20 engines/libaio.c engines/posixaio.c engines/sg.c \
21 engines/splice.c engines/syslet-rw.c engines/guasi.c \
22 engines/binject.c profiles/tiobench.c
23 LIBS += -lpthread -ldl -lrt -laio
24 CFLAGS += -rdynamic
25endif
26ifeq ($(UNAME), SunOS)
27 SOURCE += fifo.c lib/strsep.c helpers.c solaris.c engines/posixaio.c \
28 engines/solarisaio.c
29 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
30 CPPFLAGS += -D__EXTENSIONS__
31endif
32ifeq ($(UNAME), FreeBSD)
33 SOURCE += helpers.c engines/posixaio.c
34 LIBS += -lpthread -lrt
35 CFLAGS += -rdynamic
36endif
37ifeq ($(UNAME), NetBSD)
38 SOURCE += helpers.c engines/posixaio.c
39 LIBS += -lpthread -lrt
40 CFLAGS += -rdynamic
41endif
42ifeq ($(UNAME), AIX)
43 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
44 LIBS += -lpthread -ldl -lrt
45 CFLAGS += -rdynamic
46 CPPFLAGS += -D_LARGE_FILES -D__ppc__
47endif
48ifeq ($(UNAME), Darwin)
49 SOURCE += helpers.c engines/posixaio.c
50 LIBS += -lpthread -ldl
51endif
52ifneq (,$(findstring CYGWIN,$(UNAME)))
53 SOURCE += engines/windowsaio.c
54 LIBS += -lpthread -lrt
55endif
56
9b836561 57OBJS = $(SOURCE:.c=.o)
79d16311 58
4c3ecec4
JA
59ifneq ($(findstring $(MAKEFLAGS),s),s)
60ifndef V
61 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 62 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
63endif
64endif
65
c1d5725e
JA
66INSTALL = install
67prefix = /usr/local
68bindir = $(prefix)/bin
d60e92d1 69mandir = $(prefix)/man
c1d5725e 70
9b836561
BC
71.c.o:
72 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
e52947d1 73
2f9ade3c 74fio: $(OBJS)
e52947d1 75 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
4c3ecec4 76
0b2d6a7a 77depend:
9b836561 78 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
0b2d6a7a 79
06fecb4e
JA
80$(PROGS): depend
81
82all: depend $(PROGS) $(SCRIPTS)
ebac4655
JA
83
84clean:
0d29de83 85 -rm -f .depend $(OBJS) $(PROGS) core.* core
ebac4655 86
592ef98a 87cscope:
366badd3 88 @cscope -b -R
592ef98a 89
ebac4655
JA
90install: $(PROGS) $(SCRIPTS)
91 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
92 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
93 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
94 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 95 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 96
06fecb4e
JA
97ifneq ($(wildcard .depend),)
98include .depend
99endif