Adding Decoder application. git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@125 52acb1d6-8a22-11de-b505-999d5b087335
14 lines
354 B
Perl
Executable File
14 lines
354 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
if (!-e '../../libsecondlife-cs/bin/Debug/libsecondlife.dll') {
|
|
die "*** libsecondlife-cs must be built first\n";
|
|
}
|
|
|
|
if (-e 'Decoder.exe' && -M '../../libsecondlife-cs/bin/Debug/libsecondlife.dll' < -M 'Decoder.exe') {
|
|
system('make clean')
|
|
and die "*** make clean failed\n";
|
|
}
|
|
|
|
system('make', @ARGV)
|
|
and die "*** make failed\n";
|