aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/apps/Makefile
blob: 64382cabfc7782495a88c0c4172c1d162fb597f8 (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
27
28
29
30
31
BASEDIR:=../../../../..
include $(BASEDIR)/Makefile.rules

SUBDIRS=

SOURCES=AWTCommandLine.java \
	CommandLine.java \
	Driver.java \
	ErrorHandler.java \
	FOPException.java \
	Version.java \
	XTCommandLine.java



CLASSES=$(SOURCES:.java=.class)

all: $(CLASSES)

clean: cleanme

cleanme:
	rm -f *.class

$(TARGETS:%=%subs): %subs :
	for dir in $(SUBDIRS) ; do \
		(cd $$dir && pwd && $(MAKE) $(MFLAGS) $*) || exit 1 ; \
	done