From aa139a7d2b3f26af7590edbf413df67195c5d900 Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 27 Apr 2009 00:25:16 +0200 Subject: Adding ue2 --- ue2/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ue2/Makefile (limited to 'ue2/Makefile') diff --git a/ue2/Makefile b/ue2/Makefile new file mode 100644 index 0000000..1ee99ae --- /dev/null +++ b/ue2/Makefile @@ -0,0 +1,29 @@ +# 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 -- cgit v1.2.3