Makefile updates
[fio.git] / Makefile
CommitLineData
1e97cce9 1#CC = /opt/intel/cce/9.1.045/bin/icc
12cbb469 2CC = gcc
79e48f72 3DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
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 8OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
0c5b4087 9 eta.o verify.o memory.o io_u.o parse.o mutex.o sem.o options.o \
380065aa 10 rbtree.o diskutil.o fifo.o blktrace.o smalloc.o filehash.o
eef6eea1
JA
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
4c3ecec4
JA
32ifneq ($(findstring $(MAKEFLAGS),s),s)
33ifndef V
34 QUIET_CC = @echo ' ' CC $@;
0b2d6a7a 35 QUIET_DEP = @echo ' ' DEP $@;
4c3ecec4
JA
36endif
37endif
38
c1d5725e
JA
39INSTALL = install
40prefix = /usr/local
41bindir = $(prefix)/bin
d60e92d1 42mandir = $(prefix)/man
c1d5725e 43
0b2d6a7a
JA
44ifneq ($(wildcard .depend),)
45include .depend
46endif
47
4c3ecec4
JA
48%.o: %.c
49 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
2f9ade3c 50fio: $(OBJS)
4c3ecec4
JA
51 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
52
0b2d6a7a
JA
53depend:
54 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend
55
56all: $(PROGS) $(SCRIPTS) depend
ebac4655
JA
57
58clean:
eef6eea1 59 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core
ebac4655 60
592ef98a
JA
61cscope:
62 @cscope -b
63
ebac4655
JA
64install: $(PROGS) $(SCRIPTS)
65 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
66 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
d60e92d1
AC
67 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
68 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ebac4655 69