5

I am trying to run Makefile in cygwin. Error msg:

$ make /cygdrive/d/IoT/trunk/Macchina/TestBed/Makefile
make.exe: *** No rule to make target `/cygdrive/d/IoT/trunk/Macchina/TestBed/Makefile'.  Stop.
Etan Reisner
  • 77,877
  • 8
  • 106
  • 148
Rahul galgali
  • 775
  • 2
  • 10
  • 26

1 Answers1

4

You don't give make the makefile as an argument like that.

cd to that directory and run make.

Or if that makefile is intended to be used from other directories as well then you can try make -f /cygdrive/d/IoT/trunk/Macchina/TestBed/Makefile.

Etan Reisner
  • 77,877
  • 8
  • 106
  • 148