From 6d5ed6d0170d4f64cd00ef4189d126186c199ccf Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Wed, 27 Jun 2007 19:59:38 +0000 Subject: [PATCH] Tweaked some makefiles to bring them into consistency with other makefiles in the build. --- xsl/eclipse/Makefile | 18 ++++++++---------- xsl/htmlhelp/Makefile | 6 ++---- xsl/javahelp/Makefile | 6 ++---- 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/xsl/eclipse/Makefile b/xsl/eclipse/Makefile index 5a75cfb44..f6eeb54c3 100644 --- a/xsl/eclipse/Makefile +++ b/xsl/eclipse/Makefile @@ -1,10 +1,8 @@ -XSLT=../../buildtools/saxon -XJPARSE=../../buildtools/xjparse - -all: profile-eclipse.xsl - -profile-eclipse.xsl: eclipse.xsl ../profiling/xsl2profile.xsl - $(XSLT) $< ../profiling/xsl2profile.xsl $@ - -clean: - rm -f profile-eclipse.xsl +include ../../buildtools/Makefile.incl +all: profile-eclipse.xsl + +profile-eclipse.xsl: eclipse.xsl ../profiling/xsl2profile.xsl + $(XSLT) $< ../profiling/xsl2profile.xsl $@ + +clean: + $(RM) profile-eclipse.xsl diff --git a/xsl/htmlhelp/Makefile b/xsl/htmlhelp/Makefile index b1b5f5733..feb662412 100644 --- a/xsl/htmlhelp/Makefile +++ b/xsl/htmlhelp/Makefile @@ -1,10 +1,8 @@ -XSLT=../../buildtools/saxon -XJPARSE=../../buildtools/xjparse - +include ../../buildtools/Makefile.incl all: profile-htmlhelp-common.xsl profile-htmlhelp-common.xsl: htmlhelp-common.xsl ../profiling/xsl2profile.xsl $(XSLT) $< ../profiling/xsl2profile.xsl $@ clean: - rm -f profile-htmlhelp-common.xsl + $(RM) profile-htmlhelp-common.xsl diff --git a/xsl/javahelp/Makefile b/xsl/javahelp/Makefile index e9d129ce6..a16c99752 100644 --- a/xsl/javahelp/Makefile +++ b/xsl/javahelp/Makefile @@ -1,10 +1,8 @@ -XSLT=../../buildtools/saxon -XJPARSE=../../buildtools/xjparse - +include ../../buildtools/Makefile.incl all: profile-javahelp.xsl profile-javahelp.xsl: javahelp.xsl ../profiling/xsl2profile.xsl $(XSLT) $< ../profiling/xsl2profile.xsl $@ clean: - rm -f profile-javahelp.xsl + $(RM) profile-javahelp.xsl -- 2.40.0