Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

compile.sh 506B

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