aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/Makefile
blob: 7cf8137ecf3cf9ac1173abcd0991efaf1a9100b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Makefile -- build stuff used in subdirectories
#
# (c) 2020 Prof Dr Andreas Müller, Hochschule Rapperswil
# 
CHAPTERS =								\
	00-einleitung 10-vektorenmatrizen

images:
	@for d in ${CHAPTERS};						\
	do								\
		(							\
			if [ -f $${d}/Makefile ];			\
			then						\
				echo "make images in $${d}";		\
				cd $${d};				\
				make images;				\
			fi;						\
		);							\
	done