aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/Makefile
blob: 0bcfbca8bc0d8641318b278baf10c2a77469d17f (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) 2022 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