summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2022-02-14 03:28:51 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2022-02-14 03:45:03 +0100
commit46084436953d712b3b8c7aff542c1b288695ff1d (patch)
treea3bfb18b519fd74259f616470aafa8a9a49df24a
parenta20a6022e0d58f49a2fe50f08e4618d42ea649a3 (diff)
downloadlibxml2-46084436953d712b3b8c7aff542c1b288695ff1d.tar.gz
Remove Makefile.win
A Makefile for Visual C++ 5.0, last changed 23 years ago.
-rw-r--r--Makefile.win34
1 files changed, 0 insertions, 34 deletions
diff --git a/Makefile.win b/Makefile.win
deleted file mode 100644
index 0d36057d..00000000
--- a/Makefile.win
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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