Fixup bad format of replay_no_stall option
[fio.git] / Makefile.aix
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) -fno-omit-frame-pointer -D_LARGE_FILES -D__ppc__
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 fifo.o smalloc.o filehash.o helpers.o \
10         profile.o debug.o
11
12 OBJS += lib/rand.o
13 OBJS += lib/getopt_long.o
14
15 OBJS += crc/crc7.o
16 OBJS += crc/crc16.o
17 OBJS += crc/crc32.o
18 OBJS += crc/crc32c.o
19 OBJS += crc/crc32c-intel.o
20 OBJS += crc/crc64.o
21 OBJS += crc/sha1.o
22 OBJS += crc/sha256.o
23 OBJS += crc/sha512.o
24 OBJS += crc/md5.o
25
26 OBJS += engines/cpu.o
27 OBJS += engines/mmap.o
28 OBJS += engines/posixaio.o
29 OBJS += engines/sync.o
30 OBJS += engines/null.o
31 OBJS += engines/net.o
32
33 OBJS += profiles/tiobench.o
34
35 ifneq ($(findstring $(MAKEFLAGS),s),s)
36 ifndef V
37         QUIET_CC        = @echo '   ' CC $@;
38         QUIET_DEP       = @echo '   ' DEP $@;
39 endif
40 endif
41
42 INSTALL = installbsd -c
43 prefix = /usr/local
44 bindir = $(prefix)/bin
45 mandir = $(prefix)/man
46
47 %.o: %.c
48         $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
49 fio: $(OBJS)
50         $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -lrt
51
52 depend:
53         $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
54
55 $(PROGS): depend
56
57 all: depend $(PROGS) $(SCRIPTS)
58
59 clean:
60         -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
61
62 cscope:
63         @cscope -b
64
65 install: $(PROGS) $(SCRIPTS)
66         mkdir -p -m 755 $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
67         $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
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