diff options
| author | manuel <manuel@nc8430.lan> | 2009-05-26 14:49:37 +0200 |
|---|---|---|
| committer | manuel <manuel@nc8430.lan> | 2009-05-26 14:49:37 +0200 |
| commit | 1a60d0c2a8eeef3b39ef276f0f3552552a1519b1 (patch) | |
| tree | 038e7ea34e7093f959372885869234b90734331e /ue4/Makefile | |
| parent | 1b2db0dfe36f134850965276ba62700dba02da4d (diff) | |
| download | ooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.tar.gz ooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.tar.bz2 ooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.zip | |
adding ue4 (copy from ue3)
Diffstat (limited to 'ue4/Makefile')
| -rw-r--r-- | ue4/Makefile | 29 |
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 | |||
| 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 | ||
