[bug #60811] Add long-form aliases for automatic variables

2021-06-25 Thread Gwyneth Morgan
Follow-up Comment #2, bug #60811 (project make): BSD Make already has $<, $@, etc, which have corresponding long-form names like .IMPSRC, .TARGET, etc. However, $> in BSD Make is $^ in GNU Make, which makes it difficult to write makefiles usable in both BSD/GNU Make. GNU Make's $^ is unportable

Re: Makefile Error

2021-06-25 Thread Pete Dietl
It looks like there is no recipe for a target named 'flash'. I see that there are several other Makefiles being included which may be intended to provide a 'flash' target. One include is on line 313: -include $(COMPONENT_PROJECT_VARS) because of the leading '-', if this include fails, it will do

Re: Makefile Error

2021-06-25 Thread Pete Dietl
Would need to see project.mk On Fri, Jun 25, 2021 at 12:16 AM Vignesh Chandrasekaran < vignesh.2...@gmail.com> wrote: > Dear Sir/Madam, > > I was recently trying to use make to compile my code and flash it into an > ESP32 chip when I ran into an error (please see attachment). > > I have attached