diff options
Diffstat (limited to 'src/org/apache/fop/Makefile')
-rw-r--r-- | src/org/apache/fop/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/org/apache/fop/Makefile b/src/org/apache/fop/Makefile new file mode 100644 index 000000000..173fad8d4 --- /dev/null +++ b/src/org/apache/fop/Makefile @@ -0,0 +1,26 @@ + + +BASEDIR:=../../../.. +include $(BASEDIR)/Makefile.rules + +SUBDIRS=apps \ + datatypes \ + fo \ + image \ + layout \ + pdf \ + render \ + svg + +all: $(CLASSES) allsubs + +clean: cleanme cleansubs + +cleanme: + rm -f *.class + +$(TARGETS:%=%subs): %subs : + for dir in $(SUBDIRS) ; do \ + (cd $$dir && pwd && $(MAKE) $(MFLAGS) $*) || exit 1 ; \ + done + |