From a7e42a67aae98ade48f7ba7199ed021ca276f373 Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 10 May 2009 16:07:02 +0200 Subject: adding ue3 --- ue3/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ue3/Makefile (limited to 'ue3/Makefile') diff --git a/ue3/Makefile b/ue3/Makefile new file mode 100644 index 0000000..c56aac8 --- /dev/null +++ b/ue3/Makefile @@ -0,0 +1,29 @@ +# Makefile for ue3 +# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) +# Created: 10.05.2009 + +SUBDIRS= mycpu +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