Merge branch 'master' of ssh://git.kernel.dk/data/git/fio
[fio.git] / Makefile
1 #CC     = /opt/intel/cce/9.1.045/bin/icc
2 CC      = gcc
3 DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
4 OPTFLAGS= -O2 -g $(EXTFLAGS)
5 CFLAGS  = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
6 PROGS   = fio
7 SCRIPTS = fio_generate_plots
8 OBJS = 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 \
10         rbtree.o diskutil.o fifo.o blktrace.o smalloc.o filehash.o
11
12 OBJS += crc/crc7.o
13 OBJS += crc/crc16.o
14 OBJS += crc/crc32.o
15 OBJS += crc/crc64.o
16 OBJS += crc/sha256.o
17 OBJS += crc/sha512.o
18 OBJS += crc/md5.o
19
20 OBJS += engines/cpu.o
21 OBJS += engines/libaio.o
22 OBJS += engines/mmap.o
23 OBJS += engines/posixaio.o
24 OBJS += engines/sg.o
25 OBJS += engines/splice.o
26 OBJS += engines/sync.o
27 OBJS += engines/null.o
28 OBJS += engines/net.o
29 OBJS += engines/syslet-rw.o
30 OBJS += engines/guasi.o
31
32 ifneq ($(findstring $(MAKEFLAGS),s),s)
33 ifndef V
34         QUIET_CC        = @echo '   ' CC $@;
35         QUIET_DEP       = @echo '   ' DEP $@;
36 endif
37 endif
38
39 INSTALL = install
40 prefix = /usr/local
41 bindir = $(prefix)/bin
42 mandir = $(prefix)/man
43
44 %.o: %.c
45         $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
46 fio: $(OBJS)
47         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
48
49 depend:
50         $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend
51
52 $(PROGS): depend
53
54 all: depend $(PROGS) $(SCRIPTS)
55
56 clean:
57         -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core
58
59 cscope:
60         @cscope -b
61
62 install: $(PROGS) $(SCRIPTS)
63         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
64         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
65         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
66         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
67
68 ifneq ($(wildcard .depend),)
69 include .depend
70 endif