From: jtauber Date: Sat, 4 Dec 1999 08:18:25 +0000 (+0000) Subject: at Chris Maden's suggestion, fixed bottom-level Makefiles to not try and recurse... X-Git-Tag: pre-columns~595 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=57aba22320ee3e3dc7fda70d7de051d775bcfae1;p=xmlgraphics-fop.git at Chris Maden's suggestion, fixed bottom-level Makefiles to not try and recurse into sub directories as it leads to syntax illegal in some shells git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193269 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/apps/Makefile b/src/org/apache/fop/apps/Makefile index 1ad0c6717..64382cabf 100644 --- a/src/org/apache/fop/apps/Makefile +++ b/src/org/apache/fop/apps/Makefile @@ -17,9 +17,9 @@ SOURCES=AWTCommandLine.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/datatypes/Makefile b/src/org/apache/fop/datatypes/Makefile index 87a779187..ece633684 100644 --- a/src/org/apache/fop/datatypes/Makefile +++ b/src/org/apache/fop/datatypes/Makefile @@ -11,9 +11,9 @@ SOURCES=ColorType.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/fo/flow/Makefile b/src/org/apache/fop/fo/flow/Makefile index 8615c2ef5..367affc1c 100644 --- a/src/org/apache/fop/fo/flow/Makefile +++ b/src/org/apache/fop/fo/flow/Makefile @@ -27,9 +27,9 @@ SOURCES=Block.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/fo/pagination/Makefile b/src/org/apache/fop/fo/pagination/Makefile index ca1a2a346..e04d4491f 100644 --- a/src/org/apache/fop/fo/pagination/Makefile +++ b/src/org/apache/fop/fo/pagination/Makefile @@ -22,9 +22,9 @@ SOURCES=LayoutMasterSet.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/image/Makefile b/src/org/apache/fop/image/Makefile index 9cd51e2cd..55ac67b40 100644 --- a/src/org/apache/fop/image/Makefile +++ b/src/org/apache/fop/image/Makefile @@ -14,9 +14,9 @@ SOURCES=BmpBwImage.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/layout/Makefile b/src/org/apache/fop/layout/Makefile index c4ffccba0..fda4d16f0 100644 --- a/src/org/apache/fop/layout/Makefile +++ b/src/org/apache/fop/layout/Makefile @@ -30,9 +30,9 @@ SOURCES=AlternatingPageMasterFactory.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/pdf/Makefile b/src/org/apache/fop/pdf/Makefile index 7ebce2a15..0201e132a 100644 --- a/src/org/apache/fop/pdf/Makefile +++ b/src/org/apache/fop/pdf/Makefile @@ -22,9 +22,9 @@ SOURCES=PDFAction.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/render/awt/Makefile b/src/org/apache/fop/render/awt/Makefile index d55807acf..a56f3c571 100644 --- a/src/org/apache/fop/render/awt/Makefile +++ b/src/org/apache/fop/render/awt/Makefile @@ -9,9 +9,9 @@ SOURCES=AWTRenderer.java CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/render/pdf/Makefile b/src/org/apache/fop/render/pdf/Makefile index eda522ec4..2cf470a88 100644 --- a/src/org/apache/fop/render/pdf/Makefile +++ b/src/org/apache/fop/render/pdf/Makefile @@ -12,9 +12,9 @@ SOURCES= \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/render/pdf/fonts/Makefile b/src/org/apache/fop/render/pdf/fonts/Makefile index a4658ae4e..801e5e810 100644 --- a/src/org/apache/fop/render/pdf/fonts/Makefile +++ b/src/org/apache/fop/render/pdf/fonts/Makefile @@ -11,7 +11,7 @@ CLASSES= all: allsubs -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/render/xml/Makefile b/src/org/apache/fop/render/xml/Makefile index 75c36869e..0a110a524 100644 --- a/src/org/apache/fop/render/xml/Makefile +++ b/src/org/apache/fop/render/xml/Makefile @@ -9,9 +9,9 @@ SOURCES=XMLRenderer.java CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/svg/Makefile b/src/org/apache/fop/svg/Makefile index f2f9f5b73..0597974bd 100644 --- a/src/org/apache/fop/svg/Makefile +++ b/src/org/apache/fop/svg/Makefile @@ -19,9 +19,9 @@ SOURCES=Graphic.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class diff --git a/src/org/apache/fop/viewer/Makefile b/src/org/apache/fop/viewer/Makefile index cf46558c2..611b71e85 100644 --- a/src/org/apache/fop/viewer/Makefile +++ b/src/org/apache/fop/viewer/Makefile @@ -13,9 +13,9 @@ SOURCES=Command.java \ CLASSES=$(SOURCES:.java=.class) -all: $(CLASSES) allsubs +all: $(CLASSES) -clean: cleanme cleansubs +clean: cleanme cleanme: rm -f *.class