summaryrefslogtreecommitdiffstats
path: root/src/dom/Makefile.static
diff options
context:
space:
mode:
authorAaron Spike <aaron@ekips.org>2006-04-12 13:20:54 +0000
committeracspike <acspike@users.sourceforge.net>2006-04-12 13:20:54 +0000
commitddfaffe08d23e4663fe759d67ae33fd67fc9ce5b (patch)
tree234f5425a7ef7058e69dc2ab77f89810e4f3ed91 /src/dom/Makefile.static
parentfix 1466070 (diff)
downloadinkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.tar.gz
inkscape-ddfaffe08d23e4663fe759d67ae33fd67fc9ce5b.zip
Removed file/folder for ishmal
(bzr r478)
Diffstat (limited to 'src/dom/Makefile.static')
-rwxr-xr-xsrc/dom/Makefile.static71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/dom/Makefile.static b/src/dom/Makefile.static
deleted file mode 100755
index 907fe9cce..000000000
--- a/src/dom/Makefile.static
+++ /dev/null
@@ -1,71 +0,0 @@
-###########################################################################
-#
-# 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
-###########################################################################
-