Fix AIX compile
[fio.git] / Makefile
1 CC      = gcc
2 DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3 CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
4         $(DEBUGFLAGS)
5 OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
6 CFLAGS  = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
7 LIBS    = -lm
8 PROGS   = fio
9 SCRIPTS = fio_generate_plots
10 UNAME  := $(shell uname)
11
12 SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
13                 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
14                 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
15                 lib/num2str.c $(wildcard crc/*.c) engines/cpu.c \
16                 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
17                 memalign.c
18
19 ifeq ($(UNAME), Linux)
20   SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
21                 engines/libaio.c engines/posixaio.c engines/sg.c \
22                 engines/splice.c engines/syslet-rw.c engines/guasi.c \
23                 engines/binject.c profiles/tiobench.c
24   LIBS += -lpthread -ldl -lrt -laio
25   CFLAGS += -rdynamic
26 endif
27 ifeq ($(UNAME), SunOS)
28   SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
29                 engines/solarisaio.c
30   LIBS   += -lpthread -ldl -laio -lrt -lnsl -lsocket
31   CPPFLAGS += -D__EXTENSIONS__
32 endif
33 ifeq ($(UNAME), FreeBSD)
34   SOURCE += helpers.c engines/posixaio.c
35   LIBS   += -lpthread -lrt
36   CFLAGS += -rdynamic
37 endif
38 ifeq ($(UNAME), NetBSD)
39   SOURCE += helpers.c engines/posixaio.c
40   LIBS   += -lpthread -lrt
41   CFLAGS += -rdynamic
42 endif
43 ifeq ($(UNAME), AIX)
44   SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
45   LIBS   += -lpthread -ldl -lrt
46   CFLAGS += -rdynamic
47   CPPFLAGS += -D_LARGE_FILES -D__ppc__
48 endif
49 ifeq ($(UNAME), HP-UX)
50   SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
51   LIBS   += -lpthread -ldl -lrt
52   CFLAGS += -D_LARGEFILE64_SOURCE
53 endif
54 ifeq ($(UNAME), Darwin)
55   SOURCE += helpers.c engines/posixaio.c
56   LIBS   += -lpthread -ldl
57 endif
58 ifneq (,$(findstring CYGWIN,$(UNAME)))
59   SOURCE += engines/windowsaio.c
60   LIBS   += -lpthread -lrt
61 endif
62
63 OBJS = $(SOURCE:.c=.o)
64
65 ifneq ($(findstring $(MAKEFLAGS),s),s)
66 ifndef V
67         QUIET_CC        = @echo '   ' CC $@;
68         QUIET_DEP       = @echo '   ' DEP $@;
69 endif
70 endif
71
72 INSTALL = install
73 prefix = /usr/local
74 bindir = $(prefix)/bin
75 mandir = $(prefix)/man
76
77 all: .depend $(PROGS) $(SCRIPTS)
78
79 .c.o: .depend
80         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
81
82 fio: $(OBJS)
83         $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
84
85 .depend: $(SOURCE)
86         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
87
88 $(PROGS): .depend
89
90 clean:
91         -rm -f .depend $(OBJS) $(PROGS) core.* core
92
93 cscope:
94         @cscope -b -R
95
96 install: $(PROGS) $(SCRIPTS)
97         $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
98         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
99         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
100         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
101         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
102
103 ifneq ($(wildcard .depend),)
104 include .depend
105 endif