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 332B

12345678910111213
  1. #!/bin/sh
  2. rm Vista.pas UAC.manifest UAC.rc
  3. cp ../../installer/windows/Vista.pas ../../installer/windows/UAC.manifest ../../installer/windows/UAC.rc .
  4. rm -Rf ./*.exe
  5. fpc -Sd -Twin32 DMDirc.dpr
  6. fpc -Sd -Twin32 DMDircUpdater.dpr
  7. rm -Rf ./*.o ./*.or ./*.ppu
  8. if [ -e DMDircUpdater.exe -a -e DMDirc.exe ]; then
  9. exit 0;
  10. else
  11. exit 1;
  12. fi