#!/bin/make
#
include arch.make
#
default: objsdir $(BUILD_TARGETS) examples_build
	touch .FoX
#
objsdir:
	mkdir -p objs/lib objs/finclude
#
install: objsdir $(BUILD_TARGETS)
	$(MKDIR_P) $(install_prefix)/lib $(install_prefix)/finclude $(install_prefix)/bin
	$(INSTALL) objs/lib/* $(install_prefix)/lib
	$(INSTALL) -m 644 objs/finclude/* $(install_prefix)/finclude
	$(INSTALL) FoX-config $(install_prefix)/bin
#
examples_build:
	if test -d examples; then (cd examples; $(MAKE)) fi
#
#---------------------------
#
# Recursive make for each module
#
dom_lib: objsdir sax_lib wxml_lib
	(cd dom; $(MAKE))
dom_lib_clean:
	if test -d dom; then (cd dom; $(MAKE) clean) fi
dom_lib_check: sax_lib_check wxml_lib_check
	(cd dom; $(MAKE) check)
	touch dom_lib_check
#
sax_lib: objsdir common_lib fsys_lib
	(cd sax; $(MAKE))
sax_lib_clean:
	if test -d sax; then (cd sax; $(MAKE) clean) fi
sax_lib_check: common_lib_check
	(cd sax; $(MAKE) check)
	touch sax_lib_check
#
wxml_lib: objsdir common_lib fsys_lib 
	(cd wxml; $(MAKE))
wxml_lib_clean:
	if test -d wxml; then (cd wxml; $(MAKE) clean) fi
wxml_lib_check: common_lib_check
	(cd wxml; $(MAKE) check)
	touch wxml_lib_check
#
wcml_lib: objsdir utils_lib wxml_lib
	(cd wcml; $(MAKE))
wcml_lib_clean: 
	if test -d wcml; then (cd wcml; $(MAKE) clean) fi
wcml_lib_check: wxml_lib_check
	(cd wcml; $(MAKE) check)
	touch wcml_lib_check
#
common_lib: objsdir fsys_lib
	(cd common; $(MAKE))
common_lib_clean:
	if test -d common; then (cd common; $(MAKE) clean) fi
common_lib_check:
	(cd common; $(MAKE) check)
	touch common_lib_check
#
utils_lib: objsdir
	(cd utils; $(MAKE))
utils_lib_clean:
	if test -d utils; then (cd utils; $(MAKE) clean) fi
#
fsys_lib: objsdir
	(cd fsys; $(MAKE))
fsys_lib_clean:
	if test -d fsys; then (cd fsys; $(MAKE) clean) fi
#
check: default
	@rm -f check.out *_check
	@touch check.out
	for i in $(BUILD_TARGETS); do \
	  $(MAKE) $$i''_check; \
	done
	@grep RESULT check.out
#
DoX:
	(cd DoX; $(MAKE))
#
cutdown:
	rm -rf .gitignore DoX/ config/aclocal.m4 config/autom4te.cache config/configure.ac config/m4/ config/makefile examples/ m4/ */test/ */*.m4 Changelog RELEASE release.sh
	sed -e /m4/d -i "" */makefile

cutdown-wxml: cutdown
	rm -rf wcml/ utils/ sax/ dom/

cutdown-wcml: cutdown
	rm -rf sax/ dom/

cutdown-sax: cutdown
	rm -rf wxml/ wcml/ utils/ dom/

cutdown-dom: cutdown
	rm -rf wcml/ utils/

clean: wxml_lib_clean wcml_lib_clean common_lib_clean fsys_lib_clean sax_lib_clean dom_lib_clean utils_lib_clean
	if test -d examples; then (cd examples; $(MAKE) clean) fi
	rm -rf objs .FoX check.out *_check
#
distclean: clean
	rm -f FoX-config arch.make config.log config.status .config check.out
	touch arch.make
