mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 16:32:13 -07:00
Introduce a versioning mechanism, and an `About' box in all front
ends. Versioning will be done solely by Subversion revision number, since development on these puzzles is very incremental and gradual and there don't tend to be obvious points to place numbered releases. [originally from svn r5781]
This commit is contained in:
@ -51,6 +51,7 @@ while (<IN>) {
|
||||
if ($_[0] eq "!name") { $project_name = $_[1]; next; }
|
||||
if ($_[0] eq "!srcdir") { push @srcdirs, $_[1]; next; }
|
||||
if ($_[0] eq "!makefile" and &mfval($_[1])) { $makefiles{$_[1]}=$_[2]; next;}
|
||||
if ($_[0] eq "!specialobj" and &mfval($_[1])) { $specialobj{$_[1]}->{$_[2]} = 1; next;}
|
||||
if ($_[0] eq "!begin") {
|
||||
if (&mfval($_[1])) {
|
||||
$divert = \$makefile_extra{$_[1]};
|
||||
@ -299,6 +300,7 @@ sub deps {
|
||||
@ret = ();
|
||||
$depchar ||= ':';
|
||||
foreach $i (sort keys %depends) {
|
||||
next if $specialobj{$mftyp}->{$i};
|
||||
if ($i =~ /^(.*)\.(res|rsrc)/) {
|
||||
next if !defined $rtmpl;
|
||||
$y = $1;
|
||||
|
Reference in New Issue
Block a user