FreeBSD Makefile update
[fio.git] / Makefile.solaris
CommitLineData
2c0ecd28 1CC = gcc
5921e80c 2CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG
2c0ecd28
JA
3PROGS = fio
4SCRIPTS = fio_generate_plots
a432da1d
JA
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 \
72c234e5 7 rbtree.o fifo.o smalloc.o filehash.o lib/strsep.o
c11883f7 8
a432da1d
JA
9OBJS += crc/crc7.o
10OBJS += crc/crc16.o
11OBJS += crc/crc32.o
12OBJS += crc/crc64.o
13OBJS += crc/sha256.o
14OBJS += crc/sha512.o
15OBJS += crc/md5.o
16
f8fe35e8
JA
17OBJS += engines/cpu.o
18OBJS += engines/mmap.o
19OBJS += engines/posixaio.o
20OBJS += engines/sync.o
21OBJS += engines/null.o
ed92ac0c 22OBJS += engines/net.o
417f0068 23OBJS += engines/solarisaio.o
2c0ecd28 24
5921e80c
JA
25INSTALL = install
26prefix = /usr/local
27bindir = $(prefix)/bin
28mandir = $(prefix)/man
29
30%.o: %.c
31 $(CC) -o $*.o -c $(CFLAGS) $<
c11883f7 32fio: $(OBJS)
5921e80c 33 $(CC) $(CFLAGS) -o $@ $(OBJS) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt -lnsl -lsocket
2c0ecd28 34
5921e80c 35all: $(PROGS) $(SCRIPTS)
2c0ecd28 36
5921e80c
JA
37clean:
38 -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core
2c0ecd28
JA
39
40cscope:
41 @cscope -b
42
2c0ecd28
JA
43install: $(PROGS) $(SCRIPTS)
44 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
45 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)