diff options
Diffstat (limited to 'ue3/Makefile')
| -rw-r--r-- | ue3/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ue3/Makefile b/ue3/Makefile new file mode 100644 index 0000000..c56aac8 --- /dev/null +++ b/ue3/Makefile | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # Makefile for ue3 | ||
| 2 | # Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) | ||
| 3 | # Created: 10.05.2009 | ||
| 4 | |||
| 5 | SUBDIRS= mycpu | ||
| 6 | RECURSIVE_TARGETS= all-recursive debug test clean | ||
| 7 | |||
| 8 | all: 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 | |||
| 20 | doxygen: | ||
| 21 | @doxygen doxygen.conf | ||
| 22 | |||
| 23 | protokoll: | ||
| 24 | @echo "Making protokoll"; \ | ||
| 25 | (cd protokoll && $(MAKE)) | ||
| 26 | |||
| 27 | .PHONY: protokoll doxygen clean | ||
| 28 | |||
| 29 | # vim600: noet sw=8 ts=8 | ||
