From 6e0627cafec10bec4f0623f2fdfa652e5e555d16 Mon Sep 17 00:00:00 2001 From: kelson42 Date: Wed, 8 Jun 2011 19:31:40 +0000 Subject: [PATCH] + pugixml makefile for windows --- src/pugixml/Makefile.mvsc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/pugixml/Makefile.mvsc diff --git a/src/pugixml/Makefile.mvsc b/src/pugixml/Makefile.mvsc new file mode 100644 index 0000000..31d82d1 --- /dev/null +++ b/src/pugixml/Makefile.mvsc @@ -0,0 +1,13 @@ +CC=cl.exe +LD=link.exe + +# Compiler and linker flags +CFLAGS=-O2 -Oi -I"./" -D"WIN32" -FD -EHsc -MT -Gy -nologo -c -Zi -TP +all: pugixml.lib + +objs: + rm -f vc90* + $(CC) $(CFLAGS) *.cpp + +pugixml.lib: objs + $(LD) -lib -NOLOGO -NODEFAULTLIB:"MSVCRT" -MACHINE:X86 -OUT:pugixml.lib $(LDFLAGS) *.obj