summaryrefslogtreecommitdiffstats
path: root/ue4/Makefile
blob: 821c986a84f792cae7f1ace92f025ef6e13fdeff (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 ue4
# Author:	Guenther Neuwirth (0626638), Manuel Mausz (0728348)
# Created:	26.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