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