# Makefile for ue2 # Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) # Created: 26.04.2009 SUBDIRS= imgsynth2 RECURSIVE_TARGETS= all-recursive debug test clean all: all-recursive $(RECURSIVE_TARGETS): @failcom='exit 1'; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ (cd $$subdir && $(MAKE) $$target) \ || eval $$failcom; \ done; \ test -z "$$fail" doxygen: @doxygen doxygen.conf protokoll: @echo "Making protokoll"; \ (cd protokoll && $(MAKE)) .PHONY: protokoll doxygen clean # vim600: noet sw=8 ts=8