Fio 1.39-rc1
[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 \
8e8af3c1 9 rbtree.o smalloc.o filehash.o helpers.o profile.o debug.o
2afd826b 10
1fbbf72e 11OBJS += lib/rand.o
d29cd59a 12OBJS += lib/flist_sort.o
1fbbf72e 13
2afd826b
JA
14OBJS += crc/crc7.o
15OBJS += crc/crc16.o
16OBJS += crc/crc32.o
17OBJS += crc/crc32c.o
18OBJS += crc/crc32c-intel.o
19OBJS += crc/crc64.o
b71b80d6 20OBJS += crc/sha1.o
2afd826b
JA
21OBJS += crc/sha256.o
22OBJS += crc/sha512.o
23OBJS += crc/md5.o
24
25OBJS += engines/cpu.o
26OBJS += engines/mmap.o
27OBJS += engines/posixaio.o
28OBJS += engines/sync.o
29OBJS += engines/null.o
30OBJS += engines/net.o
31
32SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
33 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
34 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
35 engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
36 *.h */*.h
37
38ifneq ($(findstring $(MAKEFLAGS),s),s)
39ifndef V
40 QUIET_CC = @echo ' ' CC $@;
41 QUIET_DEP = @echo ' ' DEP $@;
42endif
43endif
44
45INSTALL = install
46prefix = /usr/local
47bindir = $(prefix)/bin
48mandir = $(prefix)/man
49
50%.o: %.c
51 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
52fio: $(OBJS)
53 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
54
55depend:
56 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
57
58$(PROGS): depend
59
60all: depend $(PROGS) $(SCRIPTS)
61
62clean:
63 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
64
65cscope:
66 @cscope -b
67
68install: $(PROGS) $(SCRIPTS)
69 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
70 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
71 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
72 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
73 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
74
75ifneq ($(wildcard .depend),)
76include .depend
77endif