git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@184 52acb1d6-8a22-11de-b505-999d5b087335
17 lines
410 B
Perl
Executable File
17 lines
410 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
print "--- building libsecondlife-cs\n";
|
|
|
|
system('cd ../../libsecondlife-cs && ./build')
|
|
and die "*** failed to build libsecondlife-cs\n";
|
|
|
|
print "--- building Decoder\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";
|