Subversion Repositories DevTools

Rev

Rev 4031 | Rev 4097 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4031 Rev 4074
Line 11... Line 11...
11
use strict;
11
use strict;
12
use warnings;
12
use warnings;
13
use MakeEntry;
13
use MakeEntry;
14
 
14
 
15
#
15
#
-
 
16
#   External data
-
 
17
#
-
 
18
our %SRC_DEPEND;
-
 
19
 
-
 
20
#
16
#   Global data
21
#   Global data
17
#
22
#
18
my %resource_files;
23
my %resource_files;
19
my $pdb_none;
24
my $pdb_none;
20
 
25
 
Line 217... Line 222...
217
 
222
 
218
        my $me = MakeEntry::New (*MAKEFILE, $resource );
223
        my $me = MakeEntry::New (*MAKEFILE, $resource );
219
        $me->AddComment ("Build Resource: $root" );
224
        $me->AddComment ("Build Resource: $root" );
220
#        $me->AddDependancy ( '$(SCM_MAKEFILE)' );
225
#        $me->AddDependancy ( '$(SCM_MAKEFILE)' );
221
        $me->AddDependancy ( $src );
226
        $me->AddDependancy ( $src );
-
 
227
        if ( exists $SRC_DEPEND{$src} )
-
 
228
        {
-
 
229
            $me->AddDependancy ( split( /$;/, $SRC_DEPEND{$src} ) );
-
 
230
        }
222
        $me->AddRecipe ( '$(RESGEN)' );
231
        $me->AddRecipe ( '$(RESGEN)' );
223
        $me->Print();
232
        $me->Print();
224
 
233
 
225
        #
234
        #
226
        #   Add to the deletion list
235
        #   Add to the deletion list