Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: third_party/libxml/src/Makefile.win

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove suppressions, have landed in blink now Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # This is a makefile for win32 systems (VC 5.0).
2 # Christopher Blizzard
3 # http://odin.appliedtheory.com/
4
5 CC = cl
6 CFLAGS = /c /GB /Gi /nologo /I. /DWIN32 /MT /Zi
7
8 LD = link
9 LDFLAGS = /DEBUG /NODEFAULTLIB:libc
10
11 AR = lib
12
13 all: xml.lib
14
15 test: tester.exe
16
17 SHARED_OBJS = entities.obj parser.obj tree.obj SAX.obj
18
19 xml.lib: $(SHARED_OBJS)
20 $(AR) /out:xml.lib $(SHARED_OBJS)
21
22 tester.obj: $(SHARED_OBJS)
23 $(CC) $(CFLAGS) tester.c /out:tester.obj
24
25 tester.exe: tester.obj xml.lib
26 $(LD) $(LDFLAGS) /out:tester.exe tester.obj xml.lib
27
28 clean:
29 -del /f $(SHARED_OBJS) tester.obj
30 -del /f tester.exe
31 -del /f xml.lib
32 -del /f *.pdb
33 -del /f *.idb
34 -del /f *.ilk
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698