summaryrefslogtreecommitdiffstats
path: root/trunk/tmake/lib/win32/subdirs.t
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-03-22 19:19:06 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-03-22 19:19:06 (GMT)
commite620712c9dd41c56bbd56d16a5a3469b96fafbf0 (patch)
tree2a7451abfd771d43ea2b3ac2443d94c3eb5cfee7 /trunk/tmake/lib/win32/subdirs.t
parent8f455b66da9db238655242d1213c05affac412d9 (diff)
downloadDoxygen-Release_1_8_0.zip
Doxygen-Release_1_8_0.tar.gz
Doxygen-Release_1_8_0.tar.bz2
Created accidentallyRelease_1_8_0
Diffstat (limited to 'trunk/tmake/lib/win32/subdirs.t')
-rwxr-xr-xtrunk/tmake/lib/win32/subdirs.t54
1 files changed, 0 insertions, 54 deletions
diff --git a/trunk/tmake/lib/win32/subdirs.t b/trunk/tmake/lib/win32/subdirs.t
deleted file mode 100755
index 4c857fd..0000000
--- a/trunk/tmake/lib/win32/subdirs.t
+++ /dev/null
@@ -1,54 +0,0 @@
-#############################################################################
-#!
-#! This is a tmake template for creating a makefile that invokes make in
-#! sub directories - for Win32.
-#!
-#${
- StdInit();
- $m = "";
- foreach ( split(/\s+/,$project{"SUBDIRS"}) ) {
- $m = $m . "\tcd $_\n\tDOMAKE\n\t\@cd ..\n";
- }
- $project{"SUBMAKE"} = $m;
- Project('MAKEFILE') || Project('MAKEFILE = Makefile');
- Project('TMAKE') || Project('TMAKE = tmake');
-#$}
-#!
-# Makefile for building targets in sub directories.
-# Generated by tmake at #$ Now();
-# Project: #$ Expand("PROJECT");
-# Template: #$ Expand("TEMPLATE");
-#############################################################################
-
-MAKEFILE= #$ Expand("MAKEFILE");
-TMAKE = #$ Expand("TMAKE");
-
-SUBDIRS = #$ ExpandList("SUBDIRS");
-
-all: $(SUBDIRS)
-
-#${
- foreach ( split(/\s+/,$project{"SUBDIRS"}) ) {
- if ( Project("TMAKE_NOFORCE") ) {
- $text = $text . $_ . ":\n\t" .
- "cd $_\n\t\$(MAKE\)\n\t\@cd ..\n\n";
- } else {
- $text = $text . $_ . ": FORCE\n\t" .
- "cd $_\n\t\$(MAKE\)\n\t\@cd ..\n\n";
- }
- }
-#$}
-#$ TmakeSelf();
-
-tmake_all:
-#${
- foreach ( split(/\s+/,$project{"SUBDIRS"}) ) {
- $text .= "\tcd $_\n\t\$(TMAKE\) $_.pro -o \$(MAKEFILE)\n\t\@cd ..\n";
- }
-#$}
-
-clean:
-#$ $text = $project{"SUBMAKE"}; $text =~ s/DOMAKE/\$(MAKE\) clean/g;
-#$ Project("TMAKE_NOFORCE") && DisableOutput();
-FORCE:
-#$ Project("TMAKE_NOFORCE") && EnableOutput();