I have a Perl script that, after building, updates a header file with values from the exported map file. After the Perl script runs, the project needs to be built again, so I have created a batch file to do this.
I tried invoking the batch file from the Build Command, but this always receives an error in Code Composer v4. So instead, I placed the batch file call as a post build command. However, since the final instruction of the batch file calls the build routine, this enters an infinite loop ... So I need another way to instantiate this batch call.
This problem aside, I get a gmake error 13 (ignored) on the actual build command in the batch file, which is copied almost directly from the wiki. Since I cannot post the actual project here, I have created a sample project, Perl script (which basically just touches the file so it will be marked for rebuild), and batch file that is giving this error. Any help in this area would be much appreciated--I haven't used batch extensively, so it's entirely possible it's just something I'm not understanding about batch calls. Thanks!