Remove flist_sort(), it's no longer used
[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 else ifeq ($(UNAME), SunOS)
26   SOURCE += fifo.c lib/strsep.c helpers.c solaris.c engines/posixaio.c \
27                 engines/solarisaio.c
28   LIBS   += -lpthread -ldl -laio -lrt -lnsl -lsocket
29   CPPFLAGS += -D__EXTENSIONS__
30 else ifeq ($(UNAME), FreeBSD)
31   SOURCE += helpers.c engines/posixaio.c
32   LIBS   += -lpthread -lrt
33   CFLAGS += -rdynamic
34 else ifeq ($(UNAME), NetBSD)
35   SOURCE += helpers.c engines/posixaio.c
36   LIBS   += -lpthread -lrt
37   CFLAGS += -rdynamic
38 else ifeq ($(UNAME), AIX)
39   SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
40   LIBS   += -lpthread -ldl -lrt
41   CFLAGS += -rdynamic
42   CPPFLAGS += -D_LARGE_FILES -D__ppc__
43 else ifeq ($(UNAME), Darwin)
44   SOURCE += helpers.c engines/posixaio.c
45   LIBS   += -lpthread -ldl
46 else ifneq (,$(findstring CYGWIN,$(UNAME)))
47   SOURCE += engines/windowsaio.c
48   LIBS   += -lpthread -lrt
49 endif
50
51 OBJS = $(SOURCE:.c=.o)
52
53 ifneq ($(findstring $(MAKEFLAGS),s),s)
54 ifndef V
55         QUIET_CC        = @echo '   ' CC $@;
56         QUIET_DEP       = @echo '   ' DEP $@;
57 endif
58 endif
59
60 INSTALL = install
61 prefix = /usr/local
62 bindir = $(prefix)/bin
63 mandir = $(prefix)/man
64
65 .c.o:
66         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
67         
68 fio: $(OBJS)
69         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
70
71 depend:
72         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
73
74 $(PROGS): depend
75
76 all: depend $(PROGS) $(SCRIPTS)
77
78 clean:
79         -rm -f .depend $(OBJS) $(PROGS) core.* core
80
81 cscope:
82         @cscope -b -R
83
84 install: $(PROGS) $(SCRIPTS)
85         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
86         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
87         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
88         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
89         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
90
91 ifneq ($(wildcard .depend),)
92 include .depend
93 endif