aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/Makefile
blob: 173fad8d49520249717768986ba810c42104d46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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