Add a really simple allocator, backed with mmap'ed memory
[fio.git] / Makefile
... / ...
CommitLineData
1#CC = /opt/intel/cce/9.1.045/bin/icc
2CC = gcc
3DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
4OPTFLAGS= -O2 -g $(EXTFLAGS)
5CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
6PROGS = fio
7SCRIPTS = fio_generate_plots
8OBJS = 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 rbtree.o \
10 diskutil.o fifo.o blktrace.o smalloc.o
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
19
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
28OBJS += engines/net.o
29OBJS += engines/syslet-rw.o
30OBJS += engines/guasi.o
31
32ifneq ($(findstring $(MAKEFLAGS),s),s)
33ifndef V
34 QUIET_CC = @echo ' ' CC $@;
35 QUIET_AR = @echo ' ' AR $@;
36 QUIET_LINK = @echo ' ' LINK $@;
37endif
38endif
39
40INSTALL = install
41prefix = /usr/local
42bindir = $(prefix)/bin
43mandir = $(prefix)/man
44
45%.o: %.c
46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
47fio: $(OBJS)
48 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt
49
50all: $(PROGS) $(SCRIPTS)
51
52clean:
53 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core
54
55depend:
56 @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend
57
58cscope:
59 @cscope -b
60
61$(PROGS): depend
62
63install: $(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
69ifneq ($(wildcard .depend),)
70include .depend
71endif