07e011e332d8623b654f2eb374e1ad8a4be8e81a
[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= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
6 CFLAGS  = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7 LIBS    = -lm
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 $(wildcard crc/*.c) engines/cpu.c \
16                 engines/mmap.c engines/sync.c engines/null.c engines/net.c
17
18 ifeq ($(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
25 endif
26 ifeq ($(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__
31 endif
32 ifeq ($(UNAME), FreeBSD)
33   SOURCE += helpers.c engines/posixaio.c
34   LIBS   += -lpthread -lrt
35   CFLAGS += -rdynamic
36 endif
37 ifeq ($(UNAME), NetBSD)
38   SOURCE += helpers.c engines/posixaio.c
39   LIBS   += -lpthread -lrt
40   CFLAGS += -rdynamic
41 endif
42 ifeq ($(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__
47 endif
48 ifeq ($(UNAME), Darwin)
49   SOURCE += helpers.c engines/posixaio.c
50   LIBS   += -lpthread -ldl
51 endif
52 ifneq (,$(findstring CYGWIN,$(UNAME)))
53   SOURCE += engines/windowsaio.c
54   LIBS   += -lpthread -lrt
55 endif
56
57 OBJS = $(SOURCE:.c=.o)
58
59 ifneq ($(findstring $(MAKEFLAGS),s),s)
60 ifndef V
61         QUIET_CC        = @echo '   ' CC $@;
62         QUIET_DEP       = @echo '   ' DEP $@;
63 endif
64 endif
65
66 INSTALL = install
67 prefix = /usr/local
68 bindir = $(prefix)/bin
69 mandir = $(prefix)/man
70
71 .c.o:
72         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
73         
74 fio: $(OBJS)
75         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
76
77 depend:
78         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
79
80 $(PROGS): depend
81
82 all: depend $(PROGS) $(SCRIPTS)
83
84 clean:
85         -rm -f .depend $(OBJS) $(PROGS) core.* core
86
87 cscope:
88         @cscope -b -R
89
90 install: $(PROGS) $(SCRIPTS)
91         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
92         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
93         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
94         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
95         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
96
97 ifneq ($(wildcard .depend),)
98 include .depend
99 endif