#
# xrick/Makefile
#
# This source code file is part of the xrick distribution, and as such is
# copyrighted. Please read the README file in the root directory of the
# distribution for information about copyrights, trademarks, license,
# disclaimers, etc.
#

#
# includes
#
#

include Makefile.global

#
# things
#
DATE = `date +"%Y%m%d%H%M"`

#
# rules
#
#

all:
	$(MAKE) -C src all

clean:
	for i in src include; do \
	  $(MAKE) -C $$i clean; \
	done
	rm -f *~ log.txt Makefile.global

depend:
	$(MAKE) -C src depend

# eof
