Skip to content
Snippets Groups Projects
Commit 6dc0c629 authored by despair's avatar despair
Browse files

finally.

parent 2704a3f3
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/sh
make -fNTMakeFile
strip -s netrunner.exe
[ -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
[ -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