You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can currently build libraries that depend on AVRM and each other, but projects that link these all together and really only need a main.c file are a bit unsupported. I'm currently using the following Makefile for these kinds of projects:
Which yields warnings, but still technically works for flashing, and sizing, etc. I'd just like make to not output the following:
find: lib: No such file or directory
find: test: No such file or directory
find: lib: No such file or directory
find: test: No such file or directory
make: *** No rule to make target `libavrm.a()', needed by `all'. Stop.
The text was updated successfully, but these errors were encountered:
We can currently build libraries that depend on AVRM and each other, but projects that link these all together and really only need a
main.c
file are a bit unsupported. I'm currently using the followingMakefile
for these kinds of projects:Which yields warnings, but still technically works for flashing, and sizing, etc. I'd just like
make
to not output the following:The text was updated successfully, but these errors were encountered: