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