-
Hello, we study the Makefile and find that the parameter "A=" in the Makefile is uncommon for us. We studied the "make --help", but didn't find any explanation. What is the function of the "A=" in the Makefile? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @lizhi16,
|
Beta Was this translation helpful? Give feedback.
-
@lizhi16, since we are already (viciously) using the Unikraft Discord server for discussions, meetings, brainstorming and jokes (mostly bad, we do what we can), we will close the Discussions tab. We will do this on Friday, March 31, 2023. Please move any discussions or questions on the Unikraft Discord server. See you all there! 🤝 |
Beta Was this translation helpful? Give feedback.
Hi @lizhi16,
A=
is the path to the application source (aka the source files of the application repository, e.g.app-helloworld
) when set up correctly. The command you ran,make --help
invokes GNU Make's help menu instead of Unikraft. For Unikraft's help menu, please trymake help
(without the--
) as this is a unique target within Unikraft.