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