Make fio include the git version in the version output
[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= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS)
6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7LIBS = -lm $(EXTLIBS)
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 lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
16 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
17 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c
18
19ifeq ($(UNAME), Linux)
20 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
21 engines/libaio.c engines/posixaio.c engines/sg.c \
22 engines/splice.c engines/syslet-rw.c engines/guasi.c \
23 engines/binject.c engines/rdma.c profiles/tiobench.c
24 LIBS += -lpthread -ldl -lrt -laio
25 LDFLAGS += -rdynamic
26endif
27ifeq ($(UNAME), SunOS)
28 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
29 engines/solarisaio.c
30 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
31 CPPFLAGS += -D__EXTENSIONS__
32endif
33ifeq ($(UNAME), FreeBSD)
34 SOURCE += helpers.c engines/posixaio.c
35 LIBS += -lpthread -lrt
36 LDFLAGS += -rdynamic
37endif
38ifeq ($(UNAME), NetBSD)
39 SOURCE += helpers.c engines/posixaio.c
40 LIBS += -lpthread -lrt
41 LDFLAGS += -rdynamic
42endif
43ifeq ($(UNAME), AIX)
44 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
45 LIBS += -lpthread -ldl -lrt
46 CPPFLAGS += -D_LARGE_FILES -D__ppc__
47 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
48endif
49ifeq ($(UNAME), HP-UX)
50 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
51 LIBS += -lpthread -ldl -lrt
52 CFLAGS += -D_LARGEFILE64_SOURCE
53endif
54ifeq ($(UNAME), Darwin)
55 SOURCE += helpers.c engines/posixaio.c
56 LIBS += -lpthread -ldl
57endif
58ifneq (,$(findstring CYGWIN,$(UNAME)))
59 SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
60 SOURCE += engines/windowsaio.c os/windows/posix.c
61 LIBS += -lpthread -lpsapi -lws2_32
62 CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
63 CC = x86_64-w64-mingw32-gcc
64endif
65
66OBJS = $(SOURCE:.c=.o)
67
68T_SMALLOC_OBJS = t/stest.o
69T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o
70T_SMALLOC_PROGS = t/stest
71
72T_IEEE_OBJS = t/ieee754.o
73T_IEEE_OBJS += ieee754.o
74T_IEEE_PROGS = t/ieee754
75
76T_OBJS = $(T_SMALLOC_OBJS)
77T_OBJS += $(T_IEEE_OBJS)
78
79ifneq ($(findstring $(MAKEFLAGS),s),s)
80ifndef V
81 QUIET_CC = @echo ' ' CC $@;
82 QUIET_DEP = @echo ' ' DEP $@;
83endif
84endif
85
86INSTALL = install
87prefix = /usr/local
88bindir = $(prefix)/bin
89
90ifeq ($(UNAME), Darwin)
91mandir = /usr/share/man
92else
93mandir = $(prefix)/man
94endif
95
96all: .depend $(PROGS) $(SCRIPTS) FORCE
97
98.PHONY: all install clean
99.PHONY: FORCE cscope
100
101FIO-VERSION-FILE: FORCE
102 @$(SHELL_PATH) ./FIO-VERSION-GEN
103-include FIO-VERSION-FILE
104
105CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
106
107.c.o: .depend FORCE
108 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
109
110t/stest: $(T_SMALLOC_OBJS)
111 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
112
113t/ieee754: $(T_IEEE_OBJS)
114 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
115
116fio: $(OBJS)
117 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
118
119.depend: $(SOURCE)
120 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
121
122$(PROGS): .depend FORCE
123
124clean: FORCE
125 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
126
127cscope:
128 @cscope -b -R
129
130install: $(PROGS) $(SCRIPTS) FORCE
131 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
132 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
133 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
134 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
135 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
136
137ifneq ($(wildcard .depend),)
138include .depend
139endif