blob: 30277cdce364c9833599c773e2be82d745d99751 [file] [log] [blame]
Jens Axboe32cd46a2006-06-07 13:40:40 +02001CC = gcc
Jens Axboe5f421002008-06-02 16:15:59 +02002DEBUGFLAGS = -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) -rdynamic
Jens Axboe32cd46a2006-06-07 13:40:40 +02005PROGS = fio
6SCRIPTS = fio_generate_plots
Jens Axboea432da12007-07-30 12:29:37 +02007OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
Jens Axboeff2e2232008-06-13 08:38:35 +02008 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
Jens Axboe5f421002008-06-02 16:15:59 +02009 rbtree.o smalloc.o filehash.o
Jens Axboec11883f2006-11-23 15:11:53 +010010
Jens Axboea432da12007-07-30 12:29:37 +020011OBJS += crc/crc7.o
12OBJS += crc/crc16.o
13OBJS += crc/crc32.o
Jens Axboea6cee432008-12-22 11:29:50 +010014OBJS += crc/crc32c.o
15OBJS += crc/crc32c-intel.o
Jens Axboea432da12007-07-30 12:29:37 +020016OBJS += crc/crc64.o
17OBJS += crc/sha256.o
18OBJS += crc/sha512.o
19OBJS += crc/md5.o
20
Jens Axboef8fe35e2007-02-06 13:29:55 +010021OBJS += engines/cpu.o
22OBJS += engines/mmap.o
23OBJS += engines/posixaio.o
24OBJS += engines/sync.o
25OBJS += engines/null.o
Jens Axboeed92ac02007-02-06 14:43:52 +010026OBJS += engines/net.o
Jens Axboe5c4e1db2006-06-07 14:17:08 +020027
Jens Axboe5f421002008-06-02 16:15:59 +020028SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
29 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
30 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
31 engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
32 *.h */*.h
33
34ifneq ($(findstring $(MAKEFLAGS),s),s)
35ifndef V
36 QUIET_CC = @echo ' ' CC $@;
37 QUIET_DEP = @echo ' ' DEP $@;
38endif
39endif
40
Jens Axboe32cd46a2006-06-07 13:40:40 +020041INSTALL = install
42prefix = /usr/local
43bindir = $(prefix)/bin
Jens Axboeb52ae0a2008-05-30 22:23:53 +020044mandir = $(prefix)/man
45
Jens Axboe5f421002008-06-02 16:15:59 +020046%.o: %.c
47 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
Jens Axboeb52ae0a2008-05-30 22:23:53 +020048fio: $(OBJS)
Jens Axboe5f421002008-06-02 16:15:59 +020049 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
50
51depend:
52 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
53
54$(PROGS): depend
Jens Axboeb52ae0a2008-05-30 22:23:53 +020055
56all: depend $(PROGS) $(SCRIPTS)
57
58clean:
Jens Axboe6492b1e2008-06-02 15:57:45 +020059 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
Jens Axboeb52ae0a2008-05-30 22:23:53 +020060
Jens Axboeb52ae0a2008-05-30 22:23:53 +020061cscope:
62 @cscope -b
Jens Axboe32cd46a2006-06-07 13:40:40 +020063
64install: $(PROGS) $(SCRIPTS)
65 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
66 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
Jens Axboe5f421002008-06-02 16:15:59 +020067 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
68 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
Jens Axboeccd4f412009-05-20 11:36:39 +020069 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
Jens Axboe5f421002008-06-02 16:15:59 +020070
71ifneq ($(wildcard .depend),)
72include .depend
73endif