Ensure that random_seed is also added to dummy io_buf for dumping
[fio.git] / Makefile.NetBSD
1 CC      = gcc
2 DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
3 CPPFLAGS= -D_GNU_SOURCE $(DEBUGFLAGS)
4 OPTFLAGS= -O2 -fno-omit-frame-pointer -g $(EXTFLAGS)
5 CFLAGS  = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS) -rdynamic
6 LIBS    = -lpthread -lm -lrt
7 PROGS   = fio
8 SCRIPTS = fio_generate_plots
9
10 SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
11         eta.c verify.c memory.c io_u.c parse.c mutex.c options.c rbtree.c \
12         smalloc.c filehash.c helpers.c profile.c debug.c lib/rand.c \
13         lib/flist_sort.c lib/num2str.c $(wildcard crc/*.c) engines/cpu.c \
14         engines/mmap.c engines/posixaio.c engines/sync.c engines/null.c \
15         engines/net.c
16         
17 OBJS = $(SOURCE:.c=.o)
18
19 ifneq ($(findstring $(MAKEFLAGS),s),s)
20 ifndef V
21         QUIET_CC        = @echo '   ' CC $@;
22         QUIET_DEP       = @echo '   ' DEP $@;
23 endif
24 endif
25
26 INSTALL = install
27 prefix = /usr/local
28 bindir = $(prefix)/bin
29 mandir = $(prefix)/man
30
31 .c.o:
32         $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
33         
34 fio: $(OBJS)
35         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS)
36
37 depend:
38         $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
39
40 $(PROGS): depend
41
42 all: depend $(PROGS) $(SCRIPTS)
43
44 clean:
45         -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
46
47 cscope:
48         @cscope -b
49
50 install: $(PROGS) $(SCRIPTS)
51         $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
52         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
53         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
54         $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
55         $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
56
57 ifneq ($(wildcard .depend),)
58 include .depend
59 endif