Windows updates
[fio.git] / Makefile.Windows
index 97a2813a82e4a26f5e234dfba78e3e750a87827d..3313c0415e6a7ba6801200a9eeac13f3f26d2b1a 100644 (file)
@@ -1,79 +1,61 @@
-CC     = gcc-3\r
-DEBUGFLAGS = -DFIO_INC_DEBUG\r
-OPTFLAGS=  -O2 -g $(EXTFLAGS)\r
-CFLAGS =  -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) \r
-PROGS  = fio\r
-SCRIPTS = fio_generate_plots\r
-OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \\r
-       eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \\r
-       rbtree.o smalloc.o filehash.o helpers.o profile.o debug.o\r
-\r
-OBJS += lib/rand.o\r
-OBJS += lib/flist_sort.o\r
-OBJS += lib/num2str.o\r
-\r
-OBJS += crc/crc7.o\r
-OBJS += crc/crc16.o\r
-OBJS += crc/crc32.o\r
-OBJS += crc/crc32c.o\r
-OBJS += crc/crc32c-intel.o\r
-OBJS += crc/crc64.o\r
-OBJS += crc/sha1.o\r
-OBJS += crc/sha256.o\r
-OBJS += crc/sha512.o\r
-OBJS += crc/md5.o\r
-\r
-OBJS += engines/cpu.o\r
-OBJS += engines/mmap.o\r
-OBJS += engines/posixaio.o\r
-OBJS += engines/sync.o\r
-OBJS += engines/null.o\r
-OBJS += engines/net.o\r
-OBJS += engines/windowsaio.o\r
-\r
-SOURCE = eta.c filehash.c filesetup.c fio.c gettime.c init.c ioengines.c \\r
-        io_u.c log.c memory.c mutex.c options.c parse.c rbtree.c smalloc.c \\r
-        stat.c parse.c crc/*.c engines/cpu.c engines/mmap.c \\r
-        engines/posixaio.c engines/sync.c engines/null.c engines/net.c engines/windowsaio.c\r
-\r
-ifneq ($(findstring $(MAKEFLAGS),s),s)\r
-ifndef V\r
-       QUIET_CC        = @echo '   ' CC $@;\r
-       QUIET_DEP       = @echo '   ' DEP $@;\r
-endif\r
-endif\r
-\r
-INSTALL = install\r
-prefix = /usr/local\r
-bindir = $(prefix)/bin\r
-mandir = $(prefix)/man\r
-\r
-%.o: %.c\r
-       $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<\r
-fio: $(OBJS)\r
-       $(QUIET_CC)windres os/windows/version.rc -O coff -o version.o\r
-       $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -lrt version.o\r
-\r
-depend:\r
-       $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend\r
-\r
-$(PROGS): depend\r
-\r
-all: depend $(PROGS) $(SCRIPTS)\r
-\r
-clean:\r
-       -rm -f .depend cscope.out $(OBJS) $(PROGS) version.o core.* core\r
-\r
-cscope:\r
-       @cscope -b\r
-\r
-install: $(PROGS) $(SCRIPTS)\r
-       $(INSTALL) -m755 -d $(DESTDIR)$(bindir)\r
-       $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)\r
-       $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1\r
-       $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1\r
-       $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1\r
-\r
-ifneq ($(wildcard .depend),)\r
-include .depend\r
-endif\r
+CC     = gcc
+DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG
+CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
+       $(DEBUGFLAGS)
+OPTFLAGS= -O2 -fno-omit-frame-pointer -gstabs+ $(EXTFLAGS)
+CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS)
+LIBS   = -lpthread -lm -lrt
+PROGS  = fio
+SCRIPTS = fio_generate_plots
+
+SOURCE = gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \
+       eta.c verify.c memory.c io_u.c parse.c mutex.c options.c rbtree.c \
+       smalloc.c filehash.c profile.c debug.c lib/rand.c \
+       lib/flist_sort.c lib/num2str.c $(wildcard crc/*.c) engines/cpu.c \
+       engines/mmap.c engines/sync.c engines/null.c engines/net.c \
+       engines/net.c engines/windowsaio.c
+
+OBJS = $(SOURCE:.c=.o)
+
+ifneq ($(findstring $(MAKEFLAGS),s),s)
+ifndef V
+       QUIET_CC        = @echo '   ' CC $@;
+       QUIET_DEP       = @echo '   ' DEP $@;
+endif
+endif
+
+INSTALL = install
+prefix = /usr/local
+bindir = $(prefix)/bin
+mandir = $(prefix)/man
+
+.c.o:
+       $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $<
+
+fio: $(OBJS)
+       $(QUIET_CC)windres os/windows/version.rc -O coff -o version.o
+       $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS) version.o
+
+depend:
+       $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend
+
+$(PROGS): depend
+
+all: depend $(PROGS) $(SCRIPTS)
+
+clean:
+       -rm -f .depend cscope.out $(OBJS) $(PROGS) version.o core.* core
+
+cscope:
+       @cscope -b
+
+install: $(PROGS) $(SCRIPTS)
+       $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
+       $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)
+       $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
+       $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1
+       $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1
+
+ifneq ($(wildcard .depend),)
+include .depend
+endif