Merge branch 'master' of ssh://router/data/git/fio
[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
1ec3d69b 14OBJS += lib/num2str.o
bf2e821a
CC
15
16OBJS += crc/crc7.o
17OBJS += crc/crc16.o
18OBJS += crc/crc32.o
19OBJS += crc/crc32c.o
20OBJS += crc/crc32c-intel.o
21OBJS += crc/crc64.o
22OBJS += crc/sha1.o
23OBJS += crc/sha256.o
24OBJS += crc/sha512.o
25OBJS += crc/md5.o
26
27OBJS += engines/cpu.o
28OBJS += engines/mmap.o
29OBJS += engines/posixaio.o
30OBJS += engines/sync.o
31OBJS += engines/null.o
32OBJS += engines/net.o
33
34OBJS += profiles/tiobench.o
35
36ifneq ($(findstring $(MAKEFLAGS),s),s)
37ifndef V
38 QUIET_CC = @echo ' ' CC $@;
39 QUIET_DEP = @echo ' ' DEP $@;
40endif
41endif
42
43INSTALL = installbsd -c
44prefix = /usr/local
45bindir = $(prefix)/bin
46mandir = $(prefix)/man
47
48%.o: %.c
49 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
50fio: $(OBJS)
51 $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -lrt
52
53depend:
54 $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend
55
56$(PROGS): depend
57
58all: depend $(PROGS) $(SCRIPTS)
59
60clean:
61 -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core
62
63cscope:
64 @cscope -b
65
66install: $(PROGS) $(SCRIPTS)
67 mkdir -p -m 755 $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
68 $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
69 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
70 $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
71
72ifneq ($(wildcard .depend),)
73include .depend
74endif