On linux or mac i have no problem to build a small script to bubble a coffe....

But on a bat file my coffe make only the first line.....

file auto.bat !!!!

how i bring bubble this bat file and make 3 line command ...

the same as linux #make distclean && qmake && make [return]

Qt Code:
  1. @ECHO OFF
  2. REM #########################################################
  3. REM
  4. REM \brief Crate clean and qmake and make.
  5. REM
  6. REM #########################################################
  7.  
  8. ECHO clean file
  9. REM ###comand 1 ######################################################
  10. make distclean
  11. ECHO prebuild
  12. REM ###comand 2 ######################################################
  13. dir
  14. REM ###comand 3 ######################################################
  15. ECHO qmake start
  16. qmake
  17. REM ###comand 4 ######################################################
  18. ECHO build
  19. REM ###comand 5 ######################################################
  20. make
To copy to clipboard, switch view to plain text mode