-
-
Notifications
You must be signed in to change notification settings - Fork 38
Makefile build automation utility
Zeioth edited this page Nov 11, 2023
·
6 revisions
When compiler.nvim detects a Makefile
in the current working directory, Telescope will be populated with all its entries.
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.