Fio 1.17
[fio.git] / Makefile
CommitLineData
1e97cce9
JA
1#CC = /opt/intel/cce/9.1.045/bin/icc
2CC = gcc -W
ab5d675e 3DEBUGFLAGS = -D_FORTIFY_SOURCE=2
4cf6b5d3 4OPTFLAGS= -O2 -g $(EXTFLAGS)
9728ce37 5CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
ebac4655
JA
6PROGS = fio
7SCRIPTS = fio_generate_plots
eef6eea1
JA
8OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
9 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o rbtree.o \
10 diskutil.o fifo.o blktrace.o
11
12OBJS += crc/crc7.o
13OBJS += crc/crc16.o
14OBJS += crc/crc32.o
15OBJS += crc/crc64.o
16OBJS += crc/sha256.o
17OBJS += crc/sha512.o
18OBJS += crc/md5.o
ebac4655 19
f8fe35e8
JA
20OBJS += engines/cpu.o
21OBJS += engines/libaio.o
22OBJS += engines/mmap.o
23OBJS += engines/posixaio.o
24OBJS += engines/sg.o
25OBJS += engines/splice.o
26OBJS += engines/sync.o
27OBJS += engines/null.o
ed92ac0c 28OBJS += engines/net.o
a4f4fdd7 29OBJS += engines/syslet-rw.o
609342ff 30OBJS += engines/guasi.o
5f350952 31
c1d5725e
JA
32INSTALL = install
33prefix = /usr/local
34bindir = $(prefix)/bin
c1d5725e 35
a37bded3 36all: $(PROGS) $(SCRIPTS)
ebac4655 37
2f9ade3c 38fio: $(OBJS)
4cf6b5d3 39 $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
ebac4655
JA
40
41clean:
eef6eea1 42 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core
ebac4655
JA
43
44depend:
eef6eea1 45 @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend
ebac4655 46
592ef98a
JA
47cscope:
48 @cscope -b
49
c69aa91f 50$(PROGS): depend
a37bded3 51
ebac4655
JA
52install: $(PROGS) $(SCRIPTS)
53 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
54 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
55
56ifneq ($(wildcard .depend),)
57include .depend
58endif