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

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

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: no iconv 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
« no previous file with comments | « third_party/libxml/src/Makefile.am ('k') | third_party/libxml/src/NEWS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # You may have to ajust to call the right compiler, or other oprions
3 # for compiling and linking
4 #
5
6 CFLAGS=`xml2-config --cflags`
7 LIBS=`xml2-config --libs`
8 THREADLIB= -lpthread
9 EXEEXT=
10
11 all: runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT) testchar$(EXEEXT)
12
13 clean:
14 $(RM) runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT)
15
16 check: do_runtest do_testchar do_testapi do_runsuite
17
18 runtest$(EXEEXT): runtest.c
19 $(CC) -o runtest$(EXEEXT) $(CFLAGS) runtest.c $(LIBS) $(THREADLIB)
20
21 do_runtest: runtest$(EXEEXT)
22 ./runtest
23
24 runsuite$(EXEEXT): runsuite.c
25 $(CC) -o runsuite$(EXEEXT) $(CFLAGS) runsuite.c $(LIBS)
26
27 do_runsuite: runsuite$(EXEEXT)
28 ./runsuite
29
30 testapi$(EXEEXT): testapi.c
31 $(CC) -o testapi$(EXEEXT) $(CFLAGS) testapi.c $(LIBS)
32
33 do_testapi: testapi$(EXEEXT)
34 ./testapi
35
36 testchar$(EXEEXT): testchar.c
37 $(CC) -o testchar$(EXEEXT) $(CFLAGS) testchar.c $(LIBS)
38
39 do_testchar: testchar$(EXEEXT)
40 ./testchar
41
OLDNEW
« no previous file with comments | « third_party/libxml/src/Makefile.am ('k') | third_party/libxml/src/NEWS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698