Makefile: 2nd go at making CC assignment/check actually work
[fio.git] / Makefile
... / ...
CommitLineData
1ifneq ($(origin CC), environment)
2CC = gcc
3endif
4DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
5CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
6 $(DEBUGFLAGS)
7OPTFLAGS= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS)
8CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
9LIBS = -lm $(EXTLIBS)
10PROGS = fio
11SCRIPTS = fio_generate_plots
12UNAME := $(shell uname)
13
14SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
15 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \
16 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \
17 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \
18 engines/mmap.c engines/sync.c engines/null.c engines/net.c \
19 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \
20 json.c lib/zipf.c gettime-thread.c
21
22ifeq ($(UNAME), Linux)
23 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \
24 engines/libaio.c engines/posixaio.c engines/sg.c \
25 engines/splice.c engines/syslet-rw.c engines/guasi.c \
26 engines/binject.c engines/rdma.c profiles/tiobench.c \
27 engines/fusion-aw.c engines/falloc.c engines/e4defrag.c
28 LIBS += -lpthread -ldl -lrt -laio
29 LDFLAGS += -rdynamic
30endif
31ifeq ($(UNAME), SunOS)
32 SOURCE += fifo.c lib/strsep.c helpers.c engines/posixaio.c \
33 engines/solarisaio.c
34 LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket
35 CPPFLAGS += -D__EXTENSIONS__
36endif
37ifeq ($(UNAME), FreeBSD)
38 SOURCE += helpers.c engines/posixaio.c
39 LIBS += -lpthread -lrt
40 LDFLAGS += -rdynamic
41endif
42ifeq ($(UNAME), NetBSD)
43 SOURCE += helpers.c engines/posixaio.c
44 LIBS += -lpthread -lrt
45 LDFLAGS += -rdynamic
46endif
47ifeq ($(UNAME), AIX)
48 SOURCE += fifo.c helpers.c lib/getopt_long.c engines/posixaio.c
49 LIBS += -lpthread -ldl -lrt
50 CPPFLAGS += -D_LARGE_FILES -D__ppc__
51 LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000
52endif
53ifeq ($(UNAME), HP-UX)
54 SOURCE += fifo.c helpers.c lib/getopt_long.c lib/strsep.c engines/posixaio.c
55 LIBS += -lpthread -ldl -lrt
56 CFLAGS += -D_LARGEFILE64_SOURCE
57endif
58ifeq ($(UNAME), Darwin)
59 SOURCE += helpers.c engines/posixaio.c
60 LIBS += -lpthread -ldl
61endif
62ifneq (,$(findstring CYGWIN,$(UNAME)))
63 SOURCE := $(filter-out engines/mmap.c,$(SOURCE))
64 SOURCE += engines/windowsaio.c os/windows/posix.c
65 LIBS += -lpthread -lpsapi -lws2_32
66 CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format
67 CC = x86_64-w64-mingw32-gcc
68 #CC = i686-w64-mingw32-gcc
69endif
70
71OBJS = $(SOURCE:.c=.o)
72
73T_SMALLOC_OBJS = t/stest.o
74T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o
75T_SMALLOC_PROGS = t/stest
76
77T_IEEE_OBJS = t/ieee754.o
78T_IEEE_OBJS += lib/ieee754.o
79T_IEEE_PROGS = t/ieee754
80
81T_ZIPF_OBS = t/genzipf.o
82T_ZIPF_OBJS += rbtree.o t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o
83T_ZIPF_PROGS = t/genzipf
84
85T_OBJS = $(T_SMALLOC_OBJS)
86T_OBJS += $(T_IEEE_OBJS)
87T_OBJS += $(T_ZIPF_OBJS)
88
89T_PROGS = $(T_SMALLOC_PROGS)
90T_PROGS += $(T_IEEE_PROGS)
91T_PROGS += $(T_ZIPF_PROGS)
92
93ifneq ($(findstring $(MAKEFLAGS),s),s)
94ifndef V
95 QUIET_CC = @echo ' ' CC $@;
96 QUIET_DEP = @echo ' ' DEP $@;
97endif
98endif
99
100INSTALL = install
101prefix = /usr/local
102bindir = $(prefix)/bin
103
104ifeq ($(UNAME), Darwin)
105mandir = /usr/share/man
106else
107mandir = $(prefix)/man
108endif
109
110all: .depend $(PROGS) $(SCRIPTS) FORCE
111
112.PHONY: all install clean
113.PHONY: FORCE cscope
114
115FIO-VERSION-FILE: FORCE
116 @$(SHELL) ./FIO-VERSION-GEN
117-include FIO-VERSION-FILE
118
119CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"'
120
121.c.o: .depend FORCE
122 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
123
124init.o: FIO-VERSION-FILE
125 $(QUIET_CC)$(CC) -o init.o -c $(CFLAGS) $(CPPFLAGS) -c init.c
126
127t/stest: $(T_SMALLOC_OBJS)
128 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS)
129
130t/ieee754: $(T_IEEE_OBJS)
131 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS)
132
133t/genzipf: $(T_ZIPF_OBJS)
134 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS)
135
136fio: $(OBJS)
137 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS)
138
139.depend: $(SOURCE)
140 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
141
142$(PROGS): .depend
143
144clean: FORCE
145 -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE
146
147cscope:
148 @cscope -b -R
149
150install: $(PROGS) $(SCRIPTS) FORCE
151 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
152 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
153 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
154 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
155 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
156
157ifneq ($(wildcard .depend),)
158include .depend
159endif