Unify makefiles
[fio.git] / Makefile
... / ...
CommitLineData
1CC = gcc
2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4 $(DEBUGFLAGS)
5OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm
8PROGS = fio
9SCRIPTS = fio_generate_plots
10UNAME := $(shell uname)
11
12SOURCE = 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
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
51OBJS = $(SOURCE:.c=.o)
52
53ifneq ($(findstring $(MAKEFLAGS),s),s)
54ifndef V
55 QUIET_CC = @echo ' ' CC $@;
56 QUIET_DEP = @echo ' ' DEP $@;
57endif
58endif
59
60INSTALL = install
61prefix = /usr/local
62bindir = $(prefix)/bin
63mandir = $(prefix)/man
64
65.c.o:
66 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
67
68fio: $(OBJS)
69 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
70
71depend:
72 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
73
74$(PROGS): depend
75
76all: depend $(PROGS) $(SCRIPTS)
77
78clean:
79 -rm -f .depend $(OBJS) $(PROGS) core.* core
80
81cscope:
82 @cscope -b -R
83
84install: $(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
91ifneq ($(wildcard .depend),)
92include .depend
93endif