Commit | Line | Data |
---|---|---|
2c0ecd28 | 1 | CC = gcc |
5921e80c | 2 | CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG |
2c0ecd28 JA |
3 | PROGS = fio |
4 | SCRIPTS = fio_generate_plots | |
a432da1d | 5 | OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \ |
ff2e2231 | 6 | eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \ |
8e8af3c1 JA |
7 | rbtree.o fifo.o smalloc.o filehash.o lib/strsep.o helpers.o solaris.o \ |
8 | profile.o debug.o | |
c11883f7 | 9 | |
1fbbf72e | 10 | OBJS += lib/rand.o |
d29cd59a | 11 | OBJS += lib/flist_sort.o |
1ec3d69b | 12 | OBJS += lib/num2str.o |
1fbbf72e | 13 | |
a432da1d JA |
14 | OBJS += crc/crc7.o |
15 | OBJS += crc/crc16.o | |
16 | OBJS += crc/crc32.o | |
a6cee43d JA |
17 | OBJS += crc/crc32c.o |
18 | OBJS += crc/crc32c-intel.o | |
a432da1d | 19 | OBJS += crc/crc64.o |
7c353ceb | 20 | OBJS += crc/sha1.o |
a432da1d JA |
21 | OBJS += crc/sha256.o |
22 | OBJS += crc/sha512.o | |
23 | OBJS += crc/md5.o | |
24 | ||
f8fe35e8 JA |
25 | OBJS += engines/cpu.o |
26 | OBJS += engines/mmap.o | |
27 | OBJS += engines/posixaio.o | |
28 | OBJS += engines/sync.o | |
29 | OBJS += engines/null.o | |
ed92ac0c | 30 | OBJS += engines/net.o |
417f0068 | 31 | OBJS += engines/solarisaio.o |
2c0ecd28 | 32 | |
5921e80c JA |
33 | INSTALL = install |
34 | prefix = /usr/local | |
35 | bindir = $(prefix)/bin | |
36 | mandir = $(prefix)/man | |
37 | ||
38 | %.o: %.c | |
39 | $(CC) -o $*.o -c $(CFLAGS) $< | |
c11883f7 | 40 | fio: $(OBJS) |
5921e80c | 41 | $(CC) $(CFLAGS) -o $@ $(OBJS) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt -lnsl -lsocket |
2c0ecd28 | 42 | |
5921e80c | 43 | all: $(PROGS) $(SCRIPTS) |
2c0ecd28 | 44 | |
5921e80c | 45 | clean: |
6492b1e5 | 46 | -rm -f .depend cscope.out $(OBJS) $(PROGS) core.* core |
2c0ecd28 JA |
47 | |
48 | cscope: | |
49 | @cscope -b | |
50 | ||
2c0ecd28 JA |
51 | install: $(PROGS) $(SCRIPTS) |
52 | $(INSTALL) -m755 -d $(DESTDIR)$(bindir) | |
53 | $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) |