Optimize __get_io_u() for better code foot print
[fio.git] / Makefile.FreeBSD
CommitLineData
32cd46a0 1CC = gcc
5f421004
JA
2DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3OPTFLAGS= -O2 -g $(EXTFLAGS)
4CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic
32cd46a0
JA
5PROGS = fio
6SCRIPTS = fio_generate_plots
a432da1d 7OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \
ff2e2231 8 eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \
d4c5b195 9 rbtree.o smalloc.o filehash.o helpers.o
c11883f7 10
a432da1d
JA
11OBJS += crc/crc7.o
12OBJS += crc/crc16.o
13OBJS += crc/crc32.o
a6cee43d
JA
14OBJS += crc/crc32c.o
15OBJS += crc/crc32c-intel.o
a432da1d 16OBJS += crc/crc64.o
7c353ceb 17OBJS += crc/sha1.o
a432da1d
JA
18OBJS += crc/sha256.o
19OBJS += crc/sha512.o
20OBJS += crc/md5.o
21
f8fe35e8
JA
22OBJS += engines/cpu.o
23OBJS += engines/mmap.o
24OBJS += engines/posixaio.o
25OBJS += engines/sync.o
26OBJS += engines/null.o
ed92ac0c 27OBJS += engines/net.o
5c4e1dbc 28
5f421004
JA
29SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
30 io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
31 stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
32 engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
e72fa4d4
JA
33 *.h arch/*.h compiler/*.h crc/*.h lib/*.h \
34 os/indirect.h os/kcompat.h os/os-freebsd.h os/os.h os/syslet.h
5f421004
JA
35
36ifneq ($(findstring $(MAKEFLAGS),s),s)
37ifndef V
38 QUIET_CC = @echo ' ' CC $@;
39 QUIET_DEP = @echo ' ' DEP $@;
40endif
41endif
42
b52ae0af
JA
43INSTALL = install
44prefix = /usr/local
45bindir = $(prefix)/bin
46mandir = $(prefix)/man
32cd46a0 47
5f421004
JA
48%.o: %.c
49 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
c11883f7 50fio: $(OBJS)
5f421004 51 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
32cd46a0 52
5f421004
JA
53depend:
54 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
b52ae0af 55
5f421004 56$(PROGS): depend
ba47b7db 57
5f421004 58all: depend $(PROGS) $(SCRIPTS)
ba47b7db 59
32cd46a0 60clean:
6492b1e5 61 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
32cd46a0 62
32cd46a0
JA
63cscope:
64 @cscope -b
65
32cd46a0
JA
66install: $(PROGS) $(SCRIPTS)
67 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
68 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
5f421004
JA
69 $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
70 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
ccd4f41b 71 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
5f421004
JA
72
73ifneq ($(wildcard .depend),)
74include .depend
75endif