summaryrefslogtreecommitdiffstats
path: root/ue4/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ue4/Makefile')
-rw-r--r--ue4/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/ue4/Makefile b/ue4/Makefile
new file mode 100644
index 0000000..821c986
--- /dev/null
+++ b/ue4/Makefile
@@ -0,0 +1,29 @@
1# Makefile for ue4
2# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348)
3# Created: 26.05.2009
4
5SUBDIRS= mycpu
6RECURSIVE_TARGETS= all-recursive debug test clean
7
8all: all-recursive
9
10$(RECURSIVE_TARGETS):
11 @failcom='exit 1'; \
12 target=`echo $@ | sed s/-recursive//`; \
13 list='$(SUBDIRS)'; for subdir in $$list; do \
14 echo "Making $$target in $$subdir"; \
15 (cd $$subdir && $(MAKE) $$target) \
16 || eval $$failcom; \
17 done; \
18 test -z "$$fail"
19
20doxygen:
21 @doxygen doxygen.conf
22
23protokoll:
24 @echo "Making protokoll"; \
25 (cd protokoll && $(MAKE))
26
27.PHONY: protokoll doxygen clean
28
29# vim600: noet sw=8 ts=8