riley
e1fdca2a9c
Add .bashrc Add .bash_profile Add .vimrc Add .gitconfig Add bin/colortest Add bin/pack
18 lines
205 B
Text
Executable file
18 lines
205 B
Text
Executable file
make clean
|
|
|
|
if [ -d "output" ]
|
|
then
|
|
rm -r output
|
|
fi
|
|
|
|
if [ -f "work.zip" ]
|
|
then
|
|
rm work.zip
|
|
fi
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
zip -r work.zip . -x "makefile"
|
|
else
|
|
zip -r work.zip $1 -x "makefile"
|
|
fi
|