#
# This is our main makefile for our program.
#
#

DIRS=tools kiltdown

all:
	$(MAKE) $(DIRS)


$(DIRS): FORCE
	if [ -d $@ ]; then cd $@; $(MAKE); fi

clean:
	for x in $(DIRS); do ( if [ -d $$x ]; then cd $$x; $(MAKE) $@; fi; ); done
	rm -f core

distclean: clean
	rm -f kiltdown/Makefile tools/Makefile

FORCE:


# DO NOT DELETE


syntax highlighted by Code2HTML, v. 0.9.1