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.

compile.sh 182B

12345678910
  1. #!/bin/sh
  2. rm -Rf ./*.exe
  3. fpc -Sd -Twin32 DMDirc.dpr
  4. fpc -Sd -Twin32 DMDircUpdater.dpr
  5. rm -Rf ./*.o ./*.or
  6. if [ -e DMDircUpdater.exe -a -e DMDirc.exe ]; then
  7. exit 0;
  8. else
  9. exit 1;
  10. fi