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