Merge branch 'master' of ssh://router/data/git/fio
[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
10
11 OBJS += crc/crc7.o
12 OBJS += crc/crc16.o
13 OBJS += crc/crc32.o
14 OBJS += crc/crc32c.o
15 OBJS += crc/crc32c-intel.o
16 OBJS += crc/crc64.o
17 OBJS += crc/sha256.o
18 OBJS += crc/sha512.o
19 OBJS += crc/md5.o
20
21 OBJS += engines/cpu.o
22 OBJS += engines/mmap.o
23 OBJS += engines/posixaio.o
24 OBJS += engines/sync.o
25 OBJS += engines/null.o
26 OBJS += engines/net.o
27
28 SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \
29          io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \
30          stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \
31          engines/posixaio.c engines/sync.c engines/null.c engines/net.c \
32          *.h */*.h
33
34 ifneq ($(findstring $(MAKEFLAGS),s),s)
35 ifndef V
36         QUIET_CC        = @echo '   ' CC $@;
37         QUIET_DEP       = @echo '   ' DEP $@;
38 endif
39 endif
40
41 INSTALL = install
42 prefix = /usr/local
43 bindir = $(prefix)/bin
44 mandir = $(prefix)/man
45
46 %.o: %.c
47         $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
48 fio: $(OBJS)
49         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
50
51 depend:
52         $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend
53
54 $(PROGS): depend
55
56 all: depend $(PROGS) $(SCRIPTS)
57
58 clean:
59         -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
60
61 cscope:
62         @cscope -b
63
64 install: $(PROGS) $(SCRIPTS)
65         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
66         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
67         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
68         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
69         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
70
71 ifneq ($(wildcard .depend),)
72 include .depend
73 endif