You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
613 B
25 lines
613 B
#!/usr/bin/sh |
|
if [ $MSYSTEM == "MINGW32" ] |
|
then |
|
make -fNTMakeFile |
|
else |
|
make -fNTMakefile AMD64=1 |
|
fi |
|
strip -s netrunner.exe |
|
[ -e 'bin' ] || mkdir bin |
|
mv *.crt bin 2> /dev/null |
|
if [ $MSYSTEM == "MINGW32" ] |
|
then |
|
cp deps/lib/nt_i386/*.dll bin |
|
cp reltools/winnt/i386/libs*.dll bin |
|
cp reltools/winnt/i386/libgcc_s_sjlj-1.dll bin |
|
else |
|
cp deps/lib/nt_amd64/*.dll bin |
|
cp reltools/winnt/amd64/libs*.dll bin |
|
cp reltools/winnt/amd64/libgcc_s_seh-1.dll bin |
|
cp reltools/winnt/amd64/libwinpthread-1.dll bin |
|
fi |
|
mv LICENSE bin |
|
mv browser.ntrml bin |
|
cp -r res bin |
|
mv netrunner.exe bin |