summaryrefslogtreecommitdiff
path: root/Makefile.FreeBSD
blob: 4f0da736e0dbddedba01a0424e4cea4eef24273a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
CC	= gcc
CFLAGS	= -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PROGS	= fio
SCRIPTS = fio_generate_plots
OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o md5.o crc32.o \
	filesetup.o eta.o verify.o memory.o io_u.o parse.o

OBJS += engines/fio-engine-cpu.o
OBJS += engines/fio-engine-mmap.o
OBJS += engines/fio-engine-posixaio.o
OBJS += engines/fio-engine-sync.o
OBJS += engines/fio-engine-null.o

all: depend $(PROGS) $(SCRIPTS)

fio: $(OBJS)
	$(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread -lm -ldl -lrt

clean:
	-rm -f *.o .depend cscope.out $(PROGS)

depend:
	@$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend

cscope:
	@cscope -b

INSTALL = install
prefix = /usr/local
bindir = $(prefix)/bin

install: $(PROGS) $(SCRIPTS)
	$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
	$(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)