mmap: catch invalid msync() errors early
[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) -rdynamic
7LIBS = -lpthread -lm -ldl -lrt -laio
8PROGS = fio
9SCRIPTS = fio_generate_plots
10
11SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
12 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c rbtree.c \
13 diskutil.c fifo.c blktrace.c smalloc.c filehash.c helpers.c \
14 cgroup.c profile.c debug.c trim.c lib/rand.c lib/flist_sort.c \
15 lib/num2str.c $(wildcard crc/*.c) engines/cpu.c engines/libaio.c \
16 engines/mmap.c engines/posixaio.c engines/sg.c engines/splice.c \
17 engines/sync.c engines/null.c engines/net.c engines/syslet-rw.c \
18 engines/guasi.c engines/binject.c profiles/tiobench.c
19
20OBJS = $(SOURCE:.c=.o)
21
22ifneq ($(findstring $(MAKEFLAGS),s),s)
23ifndef V
24 QUIET_CC = @echo ' ' CC $@;
25 QUIET_DEP = @echo ' ' DEP $@;
26endif
27endif
28
29INSTALL = install
30prefix = /usr/local
31bindir = $(prefix)/bin
32mandir = $(prefix)/man
33
34.c.o:
35 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
36
37fio: $(OBJS)
38 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
39
40depend:
41 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
42
43$(PROGS): depend
44
45all: depend $(PROGS) $(SCRIPTS)
46
47clean:
48 -rm -f .depend $(OBJS) $(PROGS) core.* core
49
50cscope:
51 @cscope -b -R
52
53install: $(PROGS) $(SCRIPTS)
54 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
55 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
56 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
57 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
58 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
59
60ifneq ($(wildcard .depend),)
61include .depend
62endif