summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-20 00:09:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-20 00:09:34 +0000
commit990231a01d464a461fdc56f3406c4128e4aca3f7 (patch)
treed345412774fe2067c4b063610d6fce03394f4ff8 /test/Makefile
parent6ed8c7c6c9f31b4fb311df2e4b4e45b600187939 (diff)
downloadlibdom-990231a01d464a461fdc56f3406c4128e4aca3f7.tar.gz
libdom-990231a01d464a461fdc56f3406c4128e4aca3f7.tar.bz2
Silence XSLT invocation.
Ensure generated testcase source files are deleted from clean target. svn path=/trunk/dom/; revision=3445
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 95fe381..c8e44fe 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -46,6 +46,7 @@ debug:
clean:
ifneq (${OBJS}, )
+ -@${RM} ${RMFLAGS} $(CFILES)
-@${RM} ${RMFLAGS} $(addsuffix ${EXEEXT}, $(OBJS))
endif
@@ -69,4 +70,4 @@ transform: $(CFILES)
@${RM} ${RMFLAGS} $@.o
%.c: %.xml
- ${XSLT} -o $@ transform/test-to-c.xsl $<
+ @${XSLT} -o $@ transform/test-to-c.xsl $<