Remove flist_sort(), it's no longer used
[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)
7d130d8d
BC
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm
ebac4655
JA
8PROGS = fio
9SCRIPTS = fio_generate_plots
7d130d8d
BC
10UNAME := $(shell uname)
11
9b836561 12SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
7d130d8d
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
25else 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__
30else ifeq ($(UNAME), FreeBSD)
31 SOURCE += helpers.c engines/posixaio.c
32 LIBS += -lpthread -lrt
33 CFLAGS += -rdynamic
34else ifeq ($(UNAME), NetBSD)
35 SOURCE += helpers.c engines/posixaio.c
36 LIBS += -lpthread -lrt
37 CFLAGS += -rdynamic
38else 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__
43else ifeq ($(UNAME), Darwin)
44 SOURCE += helpers.c engines/posixaio.c
45 LIBS += -lpthread -ldl
46else ifneq (,$(findstring CYGWIN,$(UNAME)))
47 SOURCE += engines/windowsaio.c
48 LIBS += -lpthread -lrt
49endif
50
9b836561 51OBJS = $(SOURCE:.c=.o)
79d16311 52
4c3ecec4
JA
53ifneq ($(findstring $(MAKEFLAGS),s),s)
54ifndef V
55 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 56 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
57endif
58endif
59
c1d5725e
JA
60INSTALL = install
61prefix = /usr/local
62bindir = $(prefix)/bin
d60e92d1 63mandir = $(prefix)/man
c1d5725e 64
9b836561
BC
65.c.o:
66 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
67
2f9ade3c 68fio: $(OBJS)
9b836561 69 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
4c3ecec4 70
0b2d6a7a 71depend:
9b836561 72 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
0b2d6a7a 73
06fecb4e
JA
74$(PROGS): depend
75
76all: depend $(PROGS) $(SCRIPTS)
ebac4655
JA
77
78clean:
0d29de83 79 -rm -f .depend $(OBJS) $(PROGS) core.* core
ebac4655 80
592ef98a 81cscope:
366badd3 82 @cscope -b -R
592ef98a 83
ebac4655
JA
84install: $(PROGS) $(SCRIPTS)
85 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
86 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
87 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
88 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 89 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
ebac4655 90
06fecb4e
JA
91ifneq ($(wildcard .depend),)
92include .depend
93endif