First. Create two files.
mymake.cmd and mymake.bat
mymake.cmd looks like this:
Code: Select all
@echo off
command /c mymake.bat %1
mymake.bat looks like this:
Code: Select all
@echo off
if [%1]==[all] make all
if [%1]==[program] make program
if [%1]==[clean] make clean
exit
Make Command Line = mymake.cmd program
Rebuild Command Line = mymake.cmd all
Clean Command Line = mymake.cmd clean
For you ARM folks, this even works when the lpc21isp.exe program is called from within the makefile. I just have to click in the screen for the Project Make tab to have the interactive prompts show up.