Makefile revision 9af4a24408ea7d4cea084a4fe214b81145cc36ac
1CC = gcc 2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG 3CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \ 4 $(DEBUGFLAGS) 5OPTFLAGS= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS) 6CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS) 7LIBS = -lm -lz $(EXTLIBS) 8PROGS = fio 9SCRIPTS = fio_generate_plots 10UNAME := $(shell uname) 11 12GTK_CFLAGS = `pkg-config --cflags gtk+-2.0 gthread-2.0` 13GTK_LDFLAGS = `pkg-config --libs gtk+-2.0 gthread-2.0` 14 15SOURCE := gettime.c ioengines.c init.c stat.c log.c time.c filesetup.c \ 16 eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \ 17 rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \ 18 lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \ 19 engines/mmap.c engines/sync.c engines/null.c engines/net.c \ 20 memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \ 21 cconv.c 22 23ifeq ($(UNAME), Linux) 24 SOURCE += diskutil.c fifo.c blktrace.c helpers.c cgroup.c trim.c \ 25 engines/libaio.c engines/posixaio.c engines/sg.c \ 26 engines/splice.c engines/syslet-rw.c engines/guasi.c \ 27 engines/binject.c engines/rdma.c profiles/tiobench.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 68endif 69 70OBJS = $(SOURCE:.c=.o) 71FIO_OBJS = $(OBJS) fio.o 72GFIO_OBJS = $(OBJS) gfio.o graph.o tickmarks.o ghelpers.o goptions.o 73 74T_SMALLOC_OBJS = t/stest.o 75T_SMALLOC_OBJS += mutex.o smalloc.o t/log.o 76T_SMALLOC_PROGS = t/stest 77 78T_IEEE_OBJS = t/ieee754.o 79T_IEEE_OBJS += ieee754.o 80T_IEEE_PROGS = t/ieee754 81 82T_OBJS = $(T_SMALLOC_OBJS) 83T_OBJS += $(T_IEEE_OBJS) 84 85ifneq ($(findstring $(MAKEFLAGS),s),s) 86ifndef V 87 QUIET_CC = @echo ' ' CC $@; 88 QUIET_DEP = @echo ' ' DEP $@; 89endif 90endif 91 92INSTALL = install 93prefix = /usr/local 94bindir = $(prefix)/bin 95 96ifeq ($(UNAME), Darwin) 97mandir = /usr/share/man 98else 99mandir = $(prefix)/man 100endif 101 102all: .depend $(PROGS) $(SCRIPTS) 103 104.c.o: .depend 105 $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $< 106 107goptions.o: goptions.c goptions.h 108 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c goptions.c 109 110ghelpers.o: ghelpers.c ghelpers.h 111 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c ghelpers.c 112 113gfio.o: gfio.c ghelpers.c 114 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c gfio.c 115 116graph.o: graph.c graph.h 117 $(QUIET_CC)$(CC) $(CFLAGS) $(GTK_CFLAGS) $(CPPFLAGS) -c graph.c 118 119t/stest: $(T_SMALLOC_OBJS) 120 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS) 121 122t/ieee754: $(T_IEEE_OBJS) 123 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS) 124 125fio: $(FIO_OBJS) 126 $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(FIO_OBJS) $(LIBS) $(LDFLAGS) 127 128gfio: $(GFIO_OBJS) 129 $(QUIET_CC)$(CC) $(LIBS) -o gfio $(GFIO_OBJS) $(LIBS) $(GTK_LDFLAGS) 130 131.depend: $(SOURCE) 132 $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend 133 134$(PROGS): .depend 135 136clean: 137 -rm -f .depend $(GFIO_OBJS) $(FIO_OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core gfio 138 139cscope: 140 @cscope -b -R 141 142install: $(PROGS) $(SCRIPTS) 143 $(INSTALL) -m 755 -d $(DESTDIR)$(bindir) 144 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) 145 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 146 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1 147 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1 148 149ifneq ($(wildcard .depend),) 150include .depend 151endif 152 153 154