summaryrefslogtreecommitdiff
path: root/Build/source/texk/msvc/subdirs.mak
blob: 2e5e354cfd964dd6e8e25dabce75f0238c731188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
################################################################################
#
# Makefile  : subdirs, rules to recursively enter directories
# Author    : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform  : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <02/02/19 02:52:04 popineau>
#
################################################################################

default:: all

all::
	-@echo $(verbose) & for %%d in ($(subdirs)) do \
		echo Entering %%d for $@ \
		& pushd %%d & $(make) $@ & popd

lib::
	-@echo $(verbose) & for %%d in ($(subdirs)) do \
		echo Entering %%d for $@ \
		& pushd %%d & $(make) $@ & popd

install::
	-@echo $(verbose) & for %%d in ($(subdirs)) do \
		echo Entering %%d for $@ \
		& pushd %%d & $(make) $@ & popd

depend::
	-@echo $(verbose) & for %%d in ($(subdirs)) do \
		echo Entering %%d for $@ \
		& pushd %%d & $(make) $@ & popd

# Other standard targets for everything.
clean distclean::
	-@echo $(verbose) & for %%d in ($(subdirs)) do \
		echo Entering %%d for $@ \
		& pushd %%d & $(make) $@ & popd

# End of subdirs.mak
#
# Local Variables:
# mode: makefile
# End: