Improve Windows windowsaio engine performance
[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 memalign.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 engines/net.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 engines/posixaio.c \
28                 engines/solarisaio.c engines/net.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 engines/net.c
34   LIBS   += -lpthread -lrt
35   CFLAGS += -rdynamic
36 endif
37 ifeq ($(UNAME), NetBSD)
38   SOURCE += helpers.c engines/posixaio.c engines/net.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 engines/net.c
44   LIBS   += -lpthread -ldl -lrt
45   CFLAGS += -rdynamic
46   CPPFLAGS += -D_LARGE_FILES -D__ppc__
47 endif
48 ifeq ($(UNAME), HP-UX)
49   SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c
50   LIBS   += -lpthread -dl -lrt
51   CPPFLAGS += -D_LARGE_FILES
52 endif
53 ifeq ($(UNAME), Darwin)
54   SOURCE += helpers.c engines/posixaio.c engines/net.c
55   LIBS   += -lpthread -ldl
56 endif
57 ifneq (,$(findstring CYGWIN,$(UNAME)))
58   SOURCE += engines/windowsaio.c engines/net.c
59   LIBS   += -lpthread -lrt
60 endif
61
62 OBJS = $(SOURCE:.c=.o)
63
64 ifneq ($(findstring $(MAKEFLAGS),s),s)
65 ifndef V
66         QUIET_CC        = @echo '   ' CC $@;
67         QUIET_DEP       = @echo '   ' DEP $@;
68 endif
69 endif
70
71 INSTALL = install
72 prefix = /usr/local
73 bindir = $(prefix)/bin
74 mandir = $(prefix)/man
75
76 all: .depend $(PROGS) $(SCRIPTS)
77
78 .c.o: .depend
79         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
80
81 fio: $(OBJS)
82         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
83
84 .depend: $(SOURCE)
85         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
86
87 $(PROGS): .depend
88
89 clean:
90         -rm -f .depend $(OBJS) $(PROGS) core.* core
91
92 cscope:
93         @cscope -b -R
94
95 install: $(PROGS) $(SCRIPTS)
96         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
97         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
98         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
99         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
100         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
101
102 ifneq ($(wildcard .depend),)
103 include .depend
104 endif