solaris: log error for failure to enable direct IO
[fio.git] / Makefile.solaris
... / ...
CommitLineData
1CC = gcc
2CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG
3PROGS = fio
4SCRIPTS = fio_generate_plots
5OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
6 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
7 rbtree.o fifo.o smalloc.o filehash.o lib/strsep.o helpers.o solaris.o \
8 profile.o debug.o
9
10OBJS += lib/rand.o
11OBJS += lib/flist_sort.o
12OBJS += lib/num2str.o
13
14OBJS += crc/crc7.o
15OBJS += crc/crc16.o
16OBJS += crc/crc32.o
17OBJS += crc/crc32c.o
18OBJS += crc/crc32c-intel.o
19OBJS += crc/crc64.o
20OBJS += crc/sha1.o
21OBJS += crc/sha256.o
22OBJS += crc/sha512.o
23OBJS += crc/md5.o
24
25OBJS += engines/cpu.o
26OBJS += engines/mmap.o
27OBJS += engines/posixaio.o
28OBJS += engines/sync.o
29OBJS += engines/null.o
30OBJS += engines/net.o
31OBJS += engines/solarisaio.o
32
33INSTALL = install
34prefix = /usr/local
35bindir = $(prefix)/bin
36mandir = $(prefix)/man
37
38%.o: %.c
39 $(CC) -o $*.o -c $(CFLAGS) $<
40fio: $(OBJS)
41 $(CC) $(CFLAGS) -o $@ $(OBJS) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt -lnsl -lsocket
42
43all: $(PROGS) $(SCRIPTS)
44
45clean:
46 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
47
48cscope:
49 @cscope -b
50
51install: $(PROGS) $(SCRIPTS)
52 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
53 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)