Add intel hardware assisted crc32c support
[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 \
ff2e2231 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
bac39e0e 14OBJS += crc/crc32c.o
3845591f 15OBJS += crc/crc32c-intel.o
eef6eea1
JA
16OBJS += crc/crc64.o
17OBJS += crc/sha256.o
18OBJS += crc/sha512.o
19OBJS += crc/md5.o
ebac4655 20
f8fe35e8
JA
21OBJS += engines/cpu.o
22OBJS += engines/libaio.o
23OBJS += engines/mmap.o
24OBJS += engines/posixaio.o
25OBJS += engines/sg.o
26OBJS += engines/splice.o
27OBJS += engines/sync.o
28OBJS += engines/null.o
ed92ac0c 29OBJS += engines/net.o
a4f4fdd7 30OBJS += engines/syslet-rw.o
609342ff 31OBJS += engines/guasi.o
5f350952 32
4c3ecec4
JA
33ifneq ($(findstring $(MAKEFLAGS),s),s)
34ifndef V
35 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 36 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
37endif
38endif
39
c1d5725e
JA
40INSTALL = install
41prefix = /usr/local
42bindir = $(prefix)/bin
d60e92d1 43mandir = $(prefix)/man
c1d5725e 44
4c3ecec4
JA
45%.o: %.c
46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
2f9ade3c 47fio: $(OBJS)
4c3ecec4
JA
48 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
49
0b2d6a7a 50depend:
091708da 51 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
0b2d6a7a 52
06fecb4e
JA
53$(PROGS): depend
54
55all: depend $(PROGS) $(SCRIPTS)
ebac4655
JA
56
57clean:
6492b1e5 58 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
ebac4655 59
592ef98a
JA
60cscope:
61 @cscope -b
62
ebac4655
JA
63install: $(PROGS) $(SCRIPTS)
64 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
65 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
66 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
67 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ebac4655 68
06fecb4e
JA
69ifneq ($(wildcard .depend),)
70include .depend
71endif