Skip to content
Snippets Groups Projects
Commit 2704a3f3 authored by despair's avatar despair
Browse files

buildscript

parent 43ef6042
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/sh
make -fNTMakeFile
strip -s netrunner.exe
mkdir bin
mv *.pnm *.crt *.ttf *.dll bin &1> /dev/null
mv LICENSE bin &1> /dev/null
mv netrunner.exe bin &1> /dev/null
\ No newline at end of file
[ -e bin ] || mkdir bin
[ -e *.pnm ] || mv *.pnm bin
[ -e *.crt ] || mv *.crt bin
[ -e *.ttf ] || mv *.ttf bin
[ -e *.dll ] || mv *.dll bin
[ -e LICENSE ] || mv LICENSE bin
mv netrunner.exe bin
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment