Make profile io op overrides a dedicated structure
[fio.git] / Makefile.mac
CommitLineData
2afd826b
JA
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) -rdynamic -arch i386 -arch x86_64 -arch ppc
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 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
b71b80d6 17OBJS += crc/sha1.o
2afd826b
JA
18OBJS += crc/sha256.o
19OBJS += crc/sha512.o
20OBJS += crc/md5.o
21
22OBJS += engines/cpu.o
23OBJS += engines/mmap.o
24OBJS += engines/posixaio.o
25OBJS += engines/sync.o
26OBJS += engines/null.o
27OBJS += engines/net.o
28
29SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
30 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
31 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
32 engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
33 *.h */*.h
34
35ifneq ($(findstring $(MAKEFLAGS),s),s)
36ifndef V
37 QUIET_CC = @echo ' ' CC $@;
38 QUIET_DEP = @echo ' ' DEP $@;
39endif
40endif
41
42INSTALL = install
43prefix = /usr/local
44bindir = $(prefix)/bin
45mandir = $(prefix)/man
46
47%.o: %.c
48 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
49fio: $(OBJS)
50 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
51
52depend:
53 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
54
55$(PROGS): depend
56
57all: depend $(PROGS) $(SCRIPTS)
58
59clean:
60 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
61
62cscope:
63 @cscope -b
64
65install: $(PROGS) $(SCRIPTS)
66 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
67 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
68 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
69 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
70 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
71
72ifneq ($(wildcard .depend),)
73include .depend
74endif