summaryrefslogtreecommitdiff
path: root/Build/source/texk/msvc/subdirs.mak
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/msvc/subdirs.mak')
-rw-r--r--Build/source/texk/msvc/subdirs.mak42
1 files changed, 0 insertions, 42 deletions
diff --git a/Build/source/texk/msvc/subdirs.mak b/Build/source/texk/msvc/subdirs.mak
deleted file mode 100644
index 2e5e354cfd9..00000000000
--- a/Build/source/texk/msvc/subdirs.mak
+++ /dev/null
@@ -1,42 +0,0 @@
-################################################################################
-#
-# 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: