summaryrefslogtreecommitdiffstats
path: root/ue3/Makefile
blob: c56aac8de91618782de8dae3712a37b934193f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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