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