I am new to using sublime text editor and I must say I fell in love with it right away, actually purchasing shortly after.
I wrote a simple build system that calls a simple bash script that copies a make file from a folder that I keep make files in into the directory that my sublime project resides in. The build system then calls the make file, which compiles the c files using avr-gcc and then calls avrdude and flashes a microcontroller.
This works well, however, I would like to see the output of each part of the build system. It seems that I can only see the output of the last part of the last “cmd” call. I only see the output of avrdude. When I run the bash script and the makefile in the terminal everything I want to see is printed out just fine. Here is my simple build system:
{
“cmd”: “checkForMake.sh”, “$file_path”],
“cmd”:“make”,“PROJECTNAME+=$file_base_name”,“install”]
}
Thank you for any help
Jesse