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