repo.or.cz
/
swg-src.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of https://Governor-Tarkin@bitbucket.org/Governor-Tarkin/swg...
[swg-src.git]
/
tools
/
dependcat.pl
blob
04469f36adbfc52108801340960bdcba99b30beb
1
#!/usr/bin/perl
2
3
while
(<>)
4
{
5
if
(
/^\./
)
6
{
7
$debug
.=
$_
;
8
s/\/debug\//\/
release\
//
;
9
$release
.=
$_
;
10
}
11
else
12
{
13
$debug
.=
$_
;
14
$release
.=
$_
;
15
}
16
}
17
18
print
$debug
;
19
print
$release
;