The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
commit
dbe4ddb103
1409 changed files with 806066 additions and 0 deletions
9
code/unix/extract_ver.pl
Normal file
9
code/unix/extract_ver.pl
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env perl
|
||||
# extracting version string from game/q_shared.h
|
||||
# hacked from Wolf build process
|
||||
|
||||
# extract the wolf version from q_shared.h
|
||||
$line = `cat ../game/q_shared.h | grep Q3_VERSION`;
|
||||
chomp $line;
|
||||
$line =~ s/.*Q3\ (.*)\"/$1/;
|
||||
print "$line\n";
|
Loading…
Add table
Add a link
Reference in a new issue