diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 21:10:17 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 21:10:17 (GMT) |
commit | 574585fa78070b0cc6b5ad22543e21a3502a122b (patch) | |
tree | 0e96ee0e38f68bcd7662e7815f96e0151740056f /Makefile.win | |
download | blt-574585fa78070b0cc6b5ad22543e21a3502a122b.zip blt-574585fa78070b0cc6b5ad22543e21a3502a122b.tar.gz blt-574585fa78070b0cc6b5ad22543e21a3502a122b.tar.bz2 |
Squashed 'libxml2/' content from commit d9321d2
git-subtree-dir: libxml2
git-subtree-split: d9321d23d75a97f655f9325007ea7837f101100f
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile.win b/Makefile.win new file mode 100644 index 0000000..0d36057 --- /dev/null +++ b/Makefile.win @@ -0,0 +1,34 @@ +# This is a makefile for win32 systems (VC 5.0). +# Christopher Blizzard +# http://odin.appliedtheory.com/ + +CC = cl +CFLAGS = /c /GB /Gi /nologo /I. /DWIN32 /MT /Zi + +LD = link +LDFLAGS = /DEBUG /NODEFAULTLIB:libc + +AR = lib + +all: xml.lib + +test: tester.exe + +SHARED_OBJS = entities.obj parser.obj tree.obj SAX.obj + +xml.lib: $(SHARED_OBJS) + $(AR) /out:xml.lib $(SHARED_OBJS) + +tester.obj: $(SHARED_OBJS) + $(CC) $(CFLAGS) tester.c /out:tester.obj + +tester.exe: tester.obj xml.lib + $(LD) $(LDFLAGS) /out:tester.exe tester.obj xml.lib + +clean: + -del /f $(SHARED_OBJS) tester.obj + -del /f tester.exe + -del /f xml.lib + -del /f *.pdb + -del /f *.idb + -del /f *.ilk |