Merge branch 'master' of ssh://brick.kernel.dk/data/git/fio
[fio.git] / Makefile.mac
CommitLineData
2afd826b
JA
1CC = gcc
2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3OPTFLAGS= -O2 -g $(EXTFLAGS)
ebb9b8ab 4CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
2afd826b
JA
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
1ec3d69b 13OBJS += lib/num2str.o
1fbbf72e 14
2afd826b
JA
15OBJS += crc/crc7.o
16OBJS += crc/crc16.o
17OBJS += crc/crc32.o
18OBJS += crc/crc32c.o
19OBJS += crc/crc32c-intel.o
20OBJS += crc/crc64.o
b71b80d6 21OBJS += crc/sha1.o
2afd826b
JA
22OBJS += crc/sha256.o
23OBJS += crc/sha512.o
24OBJS += crc/md5.o
25
26OBJS += engines/cpu.o
27OBJS += engines/mmap.o
28OBJS += engines/posixaio.o
29OBJS += engines/sync.o
30OBJS += engines/null.o
31OBJS += engines/net.o
32
33SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
34 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
35 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
36 engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
37 *.h */*.h
38
39ifneq ($(findstring $(MAKEFLAGS),s),s)
40ifndef V
41 QUIET_CC = @echo ' ' CC $@;
42 QUIET_DEP = @echo ' ' DEP $@;
43endif
44endif
45
46INSTALL = install
47prefix = /usr/local
48bindir = $(prefix)/bin
49mandir = $(prefix)/man
50
51%.o: %.c
52 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
53fio: $(OBJS)
54 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
55
56depend:
57 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
58
59$(PROGS): depend
60
61all: depend $(PROGS) $(SCRIPTS)
62
63clean:
64 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
65
66cscope:
67 @cscope -b
68
69install: $(PROGS) $(SCRIPTS)
70 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
71 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
72 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
73 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
74 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
75
76ifneq ($(wildcard .depend),)
77include .depend
78endif