summaryrefslogtreecommitdiffstats
path: root/src/dom/Makefile.static
blob: 907fe9ccec1a7828d635ac0f1bc7a75748901d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
###########################################################################
#
# Makefile for testing DOM code
#
###########################################################################


CC = gcc
CXX = g++

INC = -I.
CFLAGS = -g -Wall
LIBS =

OBJ = \
charclass.o      \
cssparser.o      \
domimpl.o        \
domstream.o      \
domstring.o      \
lsimpl.o         \
smilimpl.o       \
stringstream.o   \
svgimpl.o        \
svglsimpl.o      \
svgparser.o      \
uri.o            \
uristream.o      \
xmlreader.o      \
xpathimpl.o      \
xpathparser.o

all: testsvg uritest xpathtest

testdom: libdom.a testdom.o
	$(CXX) -o testdom testdom.o libdom.a $(LIBS)

testsvg: libdom.a testsvg.o
	$(CXX) -o testsvg testsvg.o libdom.a $(LIBS)

uritest: libdom.a uritest.o
	$(CXX) -o uritest uritest.o libdom.a $(LIBS)

xpathtest: libdom.a xpathtest.o
	$(CXX) -o xpathtest xpathtest.o libdom.a $(LIBS)

libdom.a: $(OBJ)
	ar crv libdom.a $(OBJ)

.cpp.o:
	$(CXX) $(CFLAGS) $(INC) -c -o $@ $<

clean:
	-$(RM) *.o
	-$(RM) *.a
	-$(RM) *.gch
	-$(RM) *.class
	-$(RM) testdom
	-$(RM) testdom.exe
	-$(RM) testsvg
	-$(RM) testsvg.exe
	-$(RM) uritest
	-$(RM) uritest.exe
	-$(RM) xpathtest
	-$(RM) xpathtest.exe
	-$(RM) core.*

###########################################################################
# E N D    O F    F I L E
###########################################################################