Speedup mark_random_map()
[fio.git] / Makefile
CommitLineData
12cbb469 1CC = gcc
79e48f72 2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
4cf6b5d3 3OPTFLAGS= -O2 -g $(EXTFLAGS)
9728ce37 4CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
ebac4655
JA
5PROGS = fio
6SCRIPTS = fio_generate_plots
eef6eea1 7OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
4d4e80f2 8 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
380065aa 9 rbtree.o diskutil.o fifo.o blktrace.o smalloc.o filehash.o
eef6eea1
JA
10
11OBJS += crc/crc7.o
12OBJS += crc/crc16.o
13OBJS += crc/crc32.o
14OBJS += crc/crc64.o
15OBJS += crc/sha256.o
16OBJS += crc/sha512.o
17OBJS += crc/md5.o
ebac4655 18
f8fe35e8
JA
19OBJS += engines/cpu.o
20OBJS += engines/libaio.o
21OBJS += engines/mmap.o
22OBJS += engines/posixaio.o
23OBJS += engines/sg.o
24OBJS += engines/splice.o
25OBJS += engines/sync.o
26OBJS += engines/null.o
ed92ac0c 27OBJS += engines/net.o
a4f4fdd7 28OBJS += engines/syslet-rw.o
609342ff 29OBJS += engines/guasi.o
5f350952 30
4c3ecec4
JA
31ifneq ($(findstring $(MAKEFLAGS),s),s)
32ifndef V
33 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 34 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
35endif
36endif
37
c1d5725e
JA
38INSTALL = install
39prefix = /usr/local
40bindir = $(prefix)/bin
d60e92d1 41mandir = $(prefix)/man
c1d5725e 42
4c3ecec4
JA
43%.o: %.c
44 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
2f9ade3c 45fio: $(OBJS)
4c3ecec4
JA
46 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
47
0b2d6a7a
JA
48depend:
49 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend
50
06fecb4e
JA
51$(PROGS): depend
52
53all: depend $(PROGS) $(SCRIPTS)
ebac4655
JA
54
55clean:
eef6eea1 56 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core
ebac4655 57
592ef98a
JA
58cscope:
59 @cscope -b
60
ebac4655
JA
61install: $(PROGS) $(SCRIPTS)
62 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
63 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
64 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
65 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ebac4655 66
06fecb4e
JA
67ifneq ($(wildcard .depend),)
68include .depend
69endif