-
-
Notifications
You must be signed in to change notification settings - Fork 44
Makefile build automation utility
Zeioth edited this page Nov 11, 2023
·
6 revisions
When compiler.nvim detects a Makefile in your current directory, its options will be listed. You can test it with this example.
Create a Makefile in your working directory and copy/paste this:
all: hello
hello:
echo "Hello, World"When you open the compiler you will see the option to run it

And this is the result

In the same way you can run hello world, you can execute any command necessary to build your program.