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