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