Jens Axboe | 79e48f7 | 2008-02-01 20:37:09 +0100 | [diff] [blame] | 1 | DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG |
Jens Axboe | 44404c5 | 2013-01-24 14:20:09 -0700 | [diff] [blame] | 2 | CPPFLAGS= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(DEBUGFLAGS) |
Jens Axboe | b14c9ed | 2013-01-08 13:41:35 +0100 | [diff] [blame] | 3 | OPTFLAGS= -O3 -g -ffast-math $(EXTFLAGS) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 4 | CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS) |
Yufei Ren | b6cf38f | 2011-08-02 12:15:30 +0200 | [diff] [blame] | 5 | LIBS = -lm $(EXTLIBS) |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 6 | PROGS = fio |
| 7 | SCRIPTS = fio_generate_plots |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 8 | UNAME := $(shell uname) |
| 9 | |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 10 | ifneq ($(wildcard config-host.mak),) |
| 11 | all: |
| 12 | include config-host.mak |
| 13 | config-host-mak: configure |
| 14 | @echo $@ is out-of-date, running configure |
| 15 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
| 16 | else |
| 17 | config-host.mak: |
| 18 | @echo "Running configure for you..." |
| 19 | @./configure |
| 20 | all: |
| 21 | include config-host.mak |
| 22 | endif |
| 23 | |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 24 | SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \ |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 25 | eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \ |
| 26 | rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \ |
Jens Axboe | c7c6cb4 | 2011-10-13 14:12:40 +0200 | [diff] [blame] | 27 | lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \ |
Jens Axboe | d48a979 | 2011-07-09 08:54:26 +0200 | [diff] [blame] | 28 | engines/mmap.c engines/sync.c engines/null.c engines/net.c \ |
Jens Axboe | 62cb17d | 2012-09-19 21:36:18 +0200 | [diff] [blame] | 29 | memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \ |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 30 | json.c lib/zipf.c lib/axmap.c lib/lfsr.c gettime-thread.c \ |
Huadong Liu | f2a2ce0 | 2013-01-30 13:22:24 +0100 | [diff] [blame] | 31 | helpers.c lib/flist_sort.c lib/hweight.c lib/getrusage.c \ |
| 32 | idletime.c |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 33 | |
Bruce Cran | c81f934 | 2013-01-13 17:09:22 +0000 | [diff] [blame] | 34 | ifdef CONFIG_64BIT_LLP64 |
| 35 | CFLAGS += -DBITS_PER_LONG=32 |
| 36 | endif |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 37 | ifdef CONFIG_64BIT |
| 38 | CFLAGS += -DBITS_PER_LONG=64 |
| 39 | endif |
| 40 | ifdef CONFIG_32BIT |
| 41 | CFLAGS += -DBITS_PER_LONG=32 |
| 42 | endif |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 43 | ifdef CONFIG_LIBAIO |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 44 | SOURCE += engines/libaio.c |
| 45 | endif |
| 46 | ifdef CONFIG_RDMA |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 47 | SOURCE += engines/rdma.c |
| 48 | endif |
| 49 | ifdef CONFIG_POSIXAIO |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 50 | SOURCE += engines/posixaio.c |
| 51 | endif |
| 52 | ifdef CONFIG_LINUX_FALLOCATE |
| 53 | SOURCE += engines/falloc.c |
| 54 | endif |
| 55 | ifdef CONFIG_LINUX_EXT4_MOVE_EXTENT |
| 56 | SOURCE += engines/e4defrag.c |
| 57 | endif |
| 58 | ifdef CONFIG_LINUX_SPLICE |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 59 | SOURCE += engines/splice.c |
| 60 | endif |
| 61 | ifdef CONFIG_GUASI |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 62 | SOURCE += engines/guasi.c |
| 63 | endif |
| 64 | ifdef CONFIG_FUSION_AW |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 65 | SOURCE += engines/fusion-aw.c |
| 66 | endif |
| 67 | ifdef CONFIG_SOLARISAIO |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 68 | SOURCE += engines/solarisaio.c |
| 69 | endif |
Jens Axboe | 4700b23 | 2013-01-24 15:33:33 -0700 | [diff] [blame] | 70 | ifdef CONFIG_WINDOWSAIO |
Jens Axboe | 4700b23 | 2013-01-24 15:33:33 -0700 | [diff] [blame] | 71 | SOURCE += engines/windowsaio.c |
| 72 | endif |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 73 | ifndef CONFIG_STRSEP |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 74 | SOURCE += lib/strsep.c |
| 75 | endif |
| 76 | ifndef CONFIG_GETOPT_LONG_ONLY |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 77 | SOURCE += lib/getopt_long.c |
| 78 | endif |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 79 | ifndef CONFIG_INET_ATON |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 80 | SOURCE += lib/inet_aton.c |
| 81 | endif |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 82 | |
| 83 | ifeq ($(UNAME), Linux) |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 84 | SOURCE += diskutil.c fifo.c blktrace.c cgroup.c trim.c engines/sg.c \ |
| 85 | engines/binject.c profiles/tiobench.c |
| 86 | LIBS += -lpthread -ldl |
Jens Axboe | 213a01b | 2011-10-07 13:24:16 +0200 | [diff] [blame] | 87 | LDFLAGS += -rdynamic |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 88 | endif |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 89 | ifeq ($(UNAME), Android) |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 90 | SOURCE += diskutil.c fifo.c blktrace.c trim.c profiles/tiobench.c |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 91 | LIBS += -ldl |
| 92 | LDFLAGS += -rdynamic |
| 93 | CPPFLAGS += -DFIO_NO_HAVE_SHM_H |
| 94 | endif |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 95 | ifeq ($(UNAME), SunOS) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 96 | LIBS += -lpthread -ldl -laio -lrt -lnsl -lsocket |
| 97 | CPPFLAGS += -D__EXTENSIONS__ |
| 98 | endif |
| 99 | ifeq ($(UNAME), FreeBSD) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 100 | LIBS += -lpthread -lrt |
Jens Axboe | 213a01b | 2011-10-07 13:24:16 +0200 | [diff] [blame] | 101 | LDFLAGS += -rdynamic |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 102 | endif |
| 103 | ifeq ($(UNAME), NetBSD) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 104 | LIBS += -lpthread -lrt |
Jens Axboe | 213a01b | 2011-10-07 13:24:16 +0200 | [diff] [blame] | 105 | LDFLAGS += -rdynamic |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 106 | endif |
| 107 | ifeq ($(UNAME), AIX) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 108 | LIBS += -lpthread -ldl -lrt |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 109 | CPPFLAGS += -D_LARGE_FILES -D__ppc__ |
Michael Perzl | 48b35be | 2011-07-13 20:28:07 +0200 | [diff] [blame] | 110 | LDFLAGS += -L/opt/freeware/lib -Wl,-blibpath:/opt/freeware/lib:/usr/lib:/lib -Wl,-bmaxdata:0x80000000 |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 111 | endif |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 112 | ifeq ($(UNAME), HP-UX) |
Jens Axboe | b5ffb75 | 2011-07-09 13:28:19 +0200 | [diff] [blame] | 113 | LIBS += -lpthread -ldl -lrt |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 114 | CFLAGS += -D_LARGEFILE64_SOURCE -D_XOPEN_SOURCE_EXTENDED |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 115 | endif |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 116 | ifeq ($(UNAME), Darwin) |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 117 | LIBS += -lpthread -ldl |
| 118 | endif |
| 119 | ifneq (,$(findstring CYGWIN,$(UNAME))) |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 120 | SOURCE := $(filter-out engines/mmap.c,$(SOURCE)) |
Jens Axboe | 4700b23 | 2013-01-24 15:33:33 -0700 | [diff] [blame] | 121 | SOURCE += os/windows/posix.c |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 122 | LIBS += -lpthread -lpsapi -lws2_32 |
| 123 | CFLAGS += -DPSAPI_VERSION=1 -Ios/windows/posix/include -Wno-format |
Bruce Cran | d015e39 | 2011-01-28 08:39:09 +0100 | [diff] [blame] | 124 | endif |
| 125 | |
Bruce Cran | 9b83656 | 2011-01-08 19:49:54 +0100 | [diff] [blame] | 126 | OBJS = $(SOURCE:.c=.o) |
Jens Axboe | f67d6ee | 2013-02-01 15:51:23 +0100 | [diff] [blame] | 127 | -include $(OBJS:.o=.d) |
Jens Axboe | 79d1631 | 2010-03-04 12:43:20 +0100 | [diff] [blame] | 128 | |
Jens Axboe | 61f78f3 | 2011-10-05 10:25:54 +0200 | [diff] [blame] | 129 | T_SMALLOC_OBJS = t/stest.o |
Jens Axboe | 39ab7da | 2012-11-06 22:10:43 +0100 | [diff] [blame] | 130 | T_SMALLOC_OBJS += gettime.o mutex.o smalloc.o t/log.o |
Jens Axboe | 61f78f3 | 2011-10-05 10:25:54 +0200 | [diff] [blame] | 131 | T_SMALLOC_PROGS = t/stest |
| 132 | |
| 133 | T_IEEE_OBJS = t/ieee754.o |
Jens Axboe | f98f3d0 | 2012-11-06 21:54:30 +0100 | [diff] [blame] | 134 | T_IEEE_OBJS += lib/ieee754.o |
Jens Axboe | 61f78f3 | 2011-10-05 10:25:54 +0200 | [diff] [blame] | 135 | T_IEEE_PROGS = t/ieee754 |
| 136 | |
Jens Axboe | 6ff3885 | 2012-11-06 16:09:14 +0100 | [diff] [blame] | 137 | T_ZIPF_OBS = t/genzipf.o |
Jens Axboe | 24baa4c | 2012-11-12 20:54:12 -0700 | [diff] [blame] | 138 | T_ZIPF_OBJS += t/log.o lib/ieee754.o lib/rand.o lib/zipf.o t/genzipf.o |
Jens Axboe | eed3f51 | 2012-11-07 13:40:01 +0100 | [diff] [blame] | 139 | T_ZIPF_PROGS = t/genzipf |
Jens Axboe | 6ff3885 | 2012-11-06 16:09:14 +0100 | [diff] [blame] | 140 | |
Jens Axboe | ad1f90a | 2012-11-28 21:29:14 +0100 | [diff] [blame] | 141 | T_AXMAP_OBJS = t/axmap.o |
| 142 | T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o |
| 143 | T_AXMAP_PROGS = t/axmap |
| 144 | |
Jens Axboe | 61f78f3 | 2011-10-05 10:25:54 +0200 | [diff] [blame] | 145 | T_OBJS = $(T_SMALLOC_OBJS) |
| 146 | T_OBJS += $(T_IEEE_OBJS) |
Jens Axboe | 6ff3885 | 2012-11-06 16:09:14 +0100 | [diff] [blame] | 147 | T_OBJS += $(T_ZIPF_OBJS) |
Jens Axboe | ad1f90a | 2012-11-28 21:29:14 +0100 | [diff] [blame] | 148 | T_OBJS += $(T_AXMAP_OBJS) |
Jens Axboe | 6ff3885 | 2012-11-06 16:09:14 +0100 | [diff] [blame] | 149 | |
| 150 | T_PROGS = $(T_SMALLOC_PROGS) |
| 151 | T_PROGS += $(T_IEEE_PROGS) |
| 152 | T_PROGS += $(T_ZIPF_PROGS) |
Jens Axboe | ad1f90a | 2012-11-28 21:29:14 +0100 | [diff] [blame] | 153 | T_PROGS += $(T_AXMAP_PROGS) |
Jens Axboe | 3427207 | 2011-08-16 10:01:03 +0200 | [diff] [blame] | 154 | |
Jens Axboe | 4c3ecec | 2008-03-01 16:20:13 +0100 | [diff] [blame] | 155 | ifneq ($(findstring $(MAKEFLAGS),s),s) |
| 156 | ifndef V |
| 157 | QUIET_CC = @echo ' ' CC $@; |
Jens Axboe | 0b2d6a7 | 2008-03-03 12:20:26 +0100 | [diff] [blame] | 158 | QUIET_DEP = @echo ' ' DEP $@; |
Jens Axboe | 4c3ecec | 2008-03-01 16:20:13 +0100 | [diff] [blame] | 159 | endif |
| 160 | endif |
| 161 | |
Jens Axboe | c1d5725 | 2006-10-09 19:56:04 +0200 | [diff] [blame] | 162 | INSTALL = install |
| 163 | prefix = /usr/local |
| 164 | bindir = $(prefix)/bin |
Jens Axboe | bcdf7c5 | 2012-02-08 14:19:27 +0100 | [diff] [blame] | 165 | |
| 166 | ifeq ($(UNAME), Darwin) |
| 167 | mandir = /usr/share/man |
| 168 | else |
Aaron Carroll | d60e92d | 2007-09-17 10:32:59 +0200 | [diff] [blame] | 169 | mandir = $(prefix)/man |
Jens Axboe | bcdf7c5 | 2012-02-08 14:19:27 +0100 | [diff] [blame] | 170 | endif |
Jens Axboe | c1d5725 | 2006-10-09 19:56:04 +0200 | [diff] [blame] | 171 | |
Jens Axboe | f67d6ee | 2013-02-01 15:51:23 +0100 | [diff] [blame] | 172 | all: $(PROGS) $(SCRIPTS) FORCE |
Michael Zappe | f84622e | 2011-06-01 20:15:18 +0200 | [diff] [blame] | 173 | |
Jens Axboe | 692a5d2 | 2012-04-11 22:07:07 +0200 | [diff] [blame] | 174 | .PHONY: all install clean |
| 175 | .PHONY: FORCE cscope |
| 176 | |
| 177 | FIO-VERSION-FILE: FORCE |
Bruce Cran | 84306c1 | 2012-04-16 19:33:03 +0200 | [diff] [blame] | 178 | @$(SHELL) ./FIO-VERSION-GEN |
Jens Axboe | 692a5d2 | 2012-04-11 22:07:07 +0200 | [diff] [blame] | 179 | -include FIO-VERSION-FILE |
| 180 | |
David M. Lee | 7496ea3 | 2013-01-31 18:37:41 +0100 | [diff] [blame] | 181 | override CFLAGS += -DFIO_VERSION='"$(FIO_VERSION)"' |
Jens Axboe | 692a5d2 | 2012-04-11 22:07:07 +0200 | [diff] [blame] | 182 | |
Jens Axboe | f67d6ee | 2013-02-01 15:51:23 +0100 | [diff] [blame] | 183 | .c.o: FORCE |
Jens Axboe | 4feafb1 | 2013-01-24 23:07:55 -0700 | [diff] [blame] | 184 | $(QUIET_CC)$(CC) -o $@ $(CFLAGS) $(CPPFLAGS) -c $< |
Jens Axboe | f67d6ee | 2013-02-01 15:51:23 +0100 | [diff] [blame] | 185 | @$(CC) -MM $(CFLAGS) $(CPPFLAGS) $*.c > $*.d |
| 186 | @mv -f $*.d $*.d.tmp |
| 187 | @sed -e 's|.*:|$*.o:|' < $*.d.tmp > $*.d |
| 188 | @sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | \ |
| 189 | sed -e 's/^ *//' -e 's/$$/:/' >> $*.d |
| 190 | @rm -f $*.d.tmp |
Diego Elio Pettenò | e52947d | 2011-03-21 20:13:53 +0100 | [diff] [blame] | 191 | |
Jens Axboe | a6204b6 | 2012-04-13 14:06:08 +0200 | [diff] [blame] | 192 | init.o: FIO-VERSION-FILE |
Jens Axboe | 4feafb1 | 2013-01-24 23:07:55 -0700 | [diff] [blame] | 193 | $(QUIET_CC)$(CC) -o init.o $(CFLAGS) $(CPPFLAGS) -c init.c |
Jens Axboe | a6204b6 | 2012-04-13 14:06:08 +0200 | [diff] [blame] | 194 | |
Jens Axboe | 61f78f3 | 2011-10-05 10:25:54 +0200 | [diff] [blame] | 195 | t/stest: $(T_SMALLOC_OBJS) |
| 196 | $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_SMALLOC_OBJS) $(LIBS) $(LDFLAGS) |
| 197 | |
| 198 | t/ieee754: $(T_IEEE_OBJS) |
| 199 | $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_IEEE_OBJS) $(LIBS) $(LDFLAGS) |
Jens Axboe | fbc2792 | 2011-08-16 09:56:27 +0200 | [diff] [blame] | 200 | |
Jens Axboe | 6ff3885 | 2012-11-06 16:09:14 +0100 | [diff] [blame] | 201 | t/genzipf: $(T_ZIPF_OBJS) |
| 202 | $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_ZIPF_OBJS) $(LIBS) $(LDFLAGS) |
| 203 | |
Jens Axboe | ad1f90a | 2012-11-28 21:29:14 +0100 | [diff] [blame] | 204 | t/axmap: $(T_AXMAP_OBJS) |
| 205 | $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(T_AXMAP_OBJS) $(LIBS) $(LDFLAGS) |
| 206 | |
Jens Axboe | 2f9ade3 | 2006-10-20 11:25:52 +0200 | [diff] [blame] | 207 | fio: $(OBJS) |
Michael Perzl | 48b35be | 2011-07-13 20:28:07 +0200 | [diff] [blame] | 208 | $(QUIET_CC)$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(LDFLAGS) |
Jens Axboe | 4c3ecec | 2008-03-01 16:20:13 +0100 | [diff] [blame] | 209 | |
Jens Axboe | 692a5d2 | 2012-04-11 22:07:07 +0200 | [diff] [blame] | 210 | clean: FORCE |
Jens Axboe | f67d6ee | 2013-02-01 15:51:23 +0100 | [diff] [blame] | 211 | -rm -f .depend $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core FIO-VERSION-FILE config-host.mak cscope.out *.d |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 212 | |
Jens Axboe | 592ef98 | 2006-06-06 20:58:57 +0200 | [diff] [blame] | 213 | cscope: |
Jens Axboe | 366badd | 2010-07-19 16:18:35 -0600 | [diff] [blame] | 214 | @cscope -b -R |
Jens Axboe | 592ef98 | 2006-06-06 20:58:57 +0200 | [diff] [blame] | 215 | |
Jens Axboe | 692a5d2 | 2012-04-11 22:07:07 +0200 | [diff] [blame] | 216 | install: $(PROGS) $(SCRIPTS) FORCE |
Jens Axboe | 513ba3f | 2011-04-29 08:24:10 +0200 | [diff] [blame] | 217 | $(INSTALL) -m 755 -d $(DESTDIR)$(bindir) |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 218 | $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) |
Aaron Carroll | d60e92d | 2007-09-17 10:32:59 +0200 | [diff] [blame] | 219 | $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 |
| 220 | $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1 |
Jens Axboe | ccd4f41 | 2009-05-20 11:36:39 +0200 | [diff] [blame] | 221 | $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1 |