diff options
Diffstat (limited to 'ue1/Makefile')
| -rw-r--r-- | ue1/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ue1/Makefile b/ue1/Makefile new file mode 100644 index 0000000..90c4eca --- /dev/null +++ b/ue1/Makefile | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # Makefile for ue1 | ||
| 2 | # Author: Manuel Mausz (0728348) | ||
| 3 | # Created: 14.04.2009 | ||
| 4 | |||
| 5 | SUBDIRS= imgsynth | ||
| 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 | ||
