## $Id: Makefile,v 1.5 2003/10/25 17:31:16 ss Exp $ include common.mk #SUBDIRS = en ja SUBDIRS = ja all: html xslt-stmp: cd xslt && $(MAKE) touch xslt-stmp fo-stmp: cd fo && $(MAKE) touch fo-stmp lint: for d in $(SUBDIRS); do (cd $$d && $(MAKE) lint); done html: xslt-stmp for d in $(SUBDIRS); do (cd $$d && $(MAKE) html); done fo: fo-stmp for d in $(SUBDIRS); do (cd $$d && $(MAKE) fo); done pdf: fo for d in $(SUBDIRS); do (cd $$d && $(MAKE) pdf); done clean: rm -f *-stmp for d in $(SUBDIRS); do (cd $$d && $(MAKE) clean); done for d in xslt fo; do (cd $$d && $(MAKE) clean); done .PHONEY: all lint html fo pdf clean