Rev 107 | Go to most recent revision | Blame | Last modification | View Log | RSS feed
package NMakeWorkspaceCreator;
# ************************************************************
# Description : A NMake Workspace (Makefile) creator
# Author : Chad Elliott
# Create Date : 6/10/2002
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use File::Basename;
use NMakeProjectCreator;
use WorkspaceCreator;
use vars qw(@ISA);
@ISA = qw(WorkspaceCreator);
# ************************************************************
# Data Section
# ************************************************************
my(@targets) = ('CLEAN', 'DEPEND', 'GENERATED', 'REALCLEAN',
'$(CUSTOM_TARGETS)');
# ************************************************************
# Subroutine Section
# ************************************************************
sub supports_make_coexistence {
#my($self) = shift;
return 1;
}
sub crlf {
my($self) = shift;
return $self->windows_crlf();
}
sub workspace_per_project {
#my($self) = shift;
return 1;
}
sub workspace_file_name {
my($self) = shift;
if ($self->make_coexistence()) {
return $self->get_modified_workspace_name($self->get_workspace_name(),
'.nmake');
}
else {
return $self->get_modified_workspace_name('Makefile', '');
}
}
sub pre_workspace {
my($self) = shift;
my($fh) = shift;
my($crlf) = $self->crlf();
print $fh '# Microsoft Developer Studio Generated NMAKE File', $crlf,
'#', $crlf,
'# $Id: NMakeWorkspaceCreator.pm 198 2005-12-15 11:30:53Z bj $', $crlf,
'#', $crlf,
'# This file was generated by MPC. Any changes made directly to', $crlf,
'# this file will be lost the next time it is generated.', $crlf,
'#', $crlf,
'# MPC Command:', $crlf,
"# $0 @ARGV", $crlf,
$crlf;
}
sub write_project_targets {
my($self) = shift;
my($fh) = shift;
my($target) = shift;
my($list) = shift;
my($crlf) = $self->crlf();
my($cwd) = $self->getcwd();
foreach my $project (@$list) {
my($dir) = $self->mpc_dirname($project);
my($chdir) = 0;
my($back) = '';
## If the directory isn't '.' then we need
## to figure out how to get back to our starting point
if ($dir ne '.') {
$chdir = 1;
my($count) = ($dir =~ tr/\///) + 1;
if ($dir =~ /^\.\.\//) {
## Find out how many directories we went down
my($rel) = $dir;
while($rel =~ s/^\.\.\///) {
}
my($down) = ($rel =~ tr/\///) + 1;
## Get $count - $down parts of the base of the current directory
$rel = $cwd;
my($index) = length($rel);
for(my $i = $down; $i < $count; $i++) {
$index = rindex($rel, '/', $index - 1);
}
if ($index > -1) {
$rel = substr($rel, $index + 1);
}
$back = ('../' x $down) . $rel;
}
else {
$back = ('../' x $count);
}
}
print $fh ($chdir ? "\tcd $dir$crlf" : ''),
"\t\$(MAKE) /f ", basename($project), " $target$crlf",
($chdir ? "\tcd $back$crlf" : '');
}
}
sub write_comps {
my($self) = shift;
my($fh) = shift;
my($projects) = $self->get_projects();
my($pjs) = $self->get_project_info();
my($trans) = $self->project_target_translation();
my(%targnum) = ();
my(@list) = $self->number_target_deps($projects, $pjs, \%targnum);
my($crlf) = $self->crlf();
my($default) = 'Win32 Debug';
## Determine the default configuration
foreach my $project (keys %$pjs) {
my($name, $deps, $pguid, @cfgs) = @{$pjs->{$project}};
@cfgs = sort @cfgs;
if (defined $cfgs[0]) {
$default = $cfgs[0];
$default =~ s/(.*)\|(.*)/$2 $1/;
last;
}
}
## Print out the content
print $fh '!IF "$(CFG)" == ""', $crlf,
'CFG=', $default, $crlf,
'!MESSAGE No configuration specified. ',
'Defaulting to ', $default, '.', $crlf,
'!ENDIF', $crlf, $crlf,
'!IF "$(CUSTOM_TARGETS)" == ""', $crlf,
'CUSTOM_TARGETS=_EMPTY_TARGET_', $crlf,
'!ENDIF', $crlf;
## Print out the "all" target
print $fh $crlf, 'ALL:';
foreach my $project (@list) {
print $fh " $$trans{$project}";
}
print $fh $crlf;
## Print out all other targets here
foreach my $target (@targets) {
print $fh $crlf,
$target, ':', $crlf;
$self->write_project_targets($fh, 'CFG="$(CFG)" ' . $target, \@list);
}
## Print out each target separately
foreach my $project (@list) {
print $fh $crlf, $$trans{$project}, ':';
if (defined $targnum{$project}) {
foreach my $number (@{$targnum{$project}}) {
print $fh " $$trans{$list[$number]}";
}
}
print $fh $crlf;
$self->write_project_targets($fh, 'CFG="$(CFG)" ' . 'ALL', [ $project ]);
}
## Print out the project_name_list target
print $fh $crlf, "project_name_list:$crlf";
foreach my $project (sort @list) {
print $fh "\t\@echo $$trans{$project}$crlf";
}
}
1;