Closed rpbeltran closed 7 years ago
I've never had this issue before.
can you point me to the repository where the code you're trying to compile is so that i can test it myself?
I uploaded my code to https://github.com/rpbeltran/hardware-controller I also tried to make it with a UNO as the target, but no luck there either, just got the same error but changed to `build-uno-atmega328/src.eep' Thank you for the help.
oh i know! it's because inside of src
you need another folder with you "project" and the main.cpp
, Makefile
, etc. just like here: https://github.com/weareleka/moti/tree/dev/src
each folder is a different project with it's own main.cpp
and they all compile.
I guess i could change the behavior, it should not be that hard.
the folder multiplexer
and so on, must be in lib
let me know if that works
That fixed everything, thank you. I also realized that you can not put your project inside of a path with any spaces in it, but I think that is a problem with make, not anything here.
Thank you for the help, and also for making this. It's an awesome project.
my pleasure :)
I'm trying to create a new project, but I have been unable to get any makes to work
My makefile looks like:
Everytime I build it prints out all the configuration data and then the error message:
make: *** No rule to make target build-mega-atmega2560/src.eep', needed by all'. Stop.
I tried running
cat /Applications/Arduino.app/Contents/Java/hardware/arduino/avr/boards.txt
and found the linemega.menu.cpu.atmega2560=ATmega2560 (Mega 2560)
which makes me think I should be using the correct values.Any help would be greatly appreciated. Let me know if any more information would be of help.