diff options
Diffstat (limited to 'tmake/lib/win32')
-rw-r--r-- | tmake/lib/win32/subdirs.t | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/tmake/lib/win32/subdirs.t b/tmake/lib/win32/subdirs.t deleted file mode 100644 index 4c857fd..0000000 --- a/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(); |